-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
Description
Description
public class BenchmarkSum
{
private JsonObject[] _jsonObjs;
[GlobalSetup]
public void Setup()
{
_jsonObjs = new JsonObject[100000];
}
[Benchmark]
public void Sum()
{
for (int i = 0; i < 100000; i++)
{
_jsonObjs[i] = new JsonObject()
{
["aaa"] = 1,
["bbbb"] = 2,
["cccc"] = new JsonArray()
{
new JsonObject()
{
["aaaa"] = "aaaaa",
["ffffff"] = "ffffffffffffff"
}
}
};
}
}
}