-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdns.linq
30 lines (26 loc) · 1022 Bytes
/
dns.linq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Query Kind="Program">
<NuGetReference>Newtonsoft.Json</NuGetReference>
<Namespace>Newtonsoft.Json</Namespace>
<Namespace>Newtonsoft.Json.Bson</Namespace>
<Namespace>Newtonsoft.Json.Converters</Namespace>
<Namespace>Newtonsoft.Json.Linq</Namespace>
<Namespace>Newtonsoft.Json.Schema</Namespace>
<Namespace>Newtonsoft.Json.Serialization</Namespace>
</Query>
void Main()
{
var param = new
{
NumberOfUser = 64,
NumberOfRandomDomain = 100,
ClientLocalTimeList = MyExtensions.TypeList(new { IpAddress = "", BrowserInfo = "", TimeResult = 0 },true),
ClientTimeFastList = MyExtensions.TypeList(new { IpAddress = "", BrowserInfo = "", TimeResult = 0 },true),
ClientTimeSlowList = MyExtensions.TypeList(new { IpAddress = "", BrowserInfo = "", TimeResultList = MyExtensions.TypeList(new {BitNo=0,TimeResult=0}, true)},true),
Round1DomainSeed="0a8719c312",
Round2DomainSeed="0a8719c313",
WarmUpDomainCount=50,
};
param.Dump();
var dt = new DataTable();
}
// Define other methods and classes here