This commit is contained in:
sunkaixuan 2017-01-14 20:12:39 +08:00
parent eedb57ae6c
commit 1a5f662a0a
6 changed files with 21 additions and 5 deletions

Binary file not shown.

View File

@ -13,11 +13,27 @@ namespace OrmTest.ExpressionTest
{ {
internal static void Init() internal static void Init()
{ {
DateTime b = DateTime.Now;
int count = 10000;
for (int i = 0; i < count; i++)
{
single(); single();
Multiple();
singleDynamic(); singleDynamic();
MultipleDynamic();
}
DateTime e = DateTime.Now;
Console.WriteLine("Count: "+ count + "\r\nTime: "+(e-b).TotalSeconds+ " Seconds ");
} }
private static void Multiple()
{
}
private static void MultipleDynamic()
{
}
private static void single() private static void single()
{ {
int p = 1; int p = 1;

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.