From 827ec4749e0f8fbe28bc5163c236903ab942d6e0 Mon Sep 17 00:00:00 2001 From: premkumar Date: Tue, 22 Mar 2022 06:54:43 +0000 Subject: [PATCH] Delete 'Test.cs' nh --- Test.cs | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 Test.cs diff --git a/Test.cs b/Test.cs deleted file mode 100644 index d037bc0..0000000 --- a/Test.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Diagnostics; - -namespace TestConsoleApp -{ - class Test - { - public static void Execute() - { - var stopWatch = Stopwatch.StartNew(); - for (int i = 0; i < 99999; i++) - { - var a = 0;a += i;a++; - } - Console.WriteLine("{0}", stopWatch.Elapsed.TotalMilliseconds); - var stopWatch2 = Stopwatch.StartNew(); - for (int i = 0; i < 99999; i++) - { - string k = string.Empty; - var a = 0; a += i; a++; - - } - Console.WriteLine("{0}", stopWatch2.Elapsed.TotalMilliseconds); - - } - } -}