DP
Size: a a a
DP
DP
IC
IC
DP
The tools first try to obtain the service provider by invoking Program.CreateHostBuilder(), calling Build(), then accessing the Services property.
DP
IC
AT
DB
IC
IC
IC
var data = new List<string>();
for (int i = 0; i < 1000000; i++)
{
var dataItem = new Dictionary<string, string>();
for (int j = 0; j < 50; j++)
{
dataItem["field_" + j] = Guid.NewGuid().ToString();
}
data.Add(JsonSerializer.Serialize(dataItem));
}
File.WriteAllLines("data.txt", data);
IC
AH
IC
IC
I
AH