Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
sleep thread
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Threading; namespace Rextester { public class Program { public static void Main(string[] args) { var stopwatch = Stopwatch.StartNew(); Thread.Sleep(500); stopwatch.Stop(); Console.WriteLine("Elapsed Milliseconds : {0}", stopwatch.ElapsedMilliseconds); Console.WriteLine("Elapsed Ticks : {0}", stopwatch.ElapsedTicks); Console.WriteLine("Present Date and Time : {0}", DateTime.Now.ToLongTimeString()); Console.ReadLine(); } } }
run
|
edit
|
history
|
help
0
vcdgdfgdfdfd
Main4
Task 2
4.4.20
credentials
Enums
SAF Mid Terms
linq jean by Fausto
Big numbers
Simple Constructor Implementation