250930 Console
·
📖TIL
internal class Program{ static public void Checker ( Random rnd ) { } static void Main(string[] args) { Random rnd = new Random(); while ( true ) { Console.WriteLine(rnd.Next()); Checker(rnd); } }}internal class Program{ static void Main(string[] args) { Stopwatch stopwatch = new Stopwatch(); stopwatch.Start(..