16 lines
315 B
C#
16 lines
315 B
C#
|
|
// this is a test program for making sure your dotnet environment is working properly
|
|
|
|
/*
|
|
using System.Diagnostics;
|
|
using System;
|
|
|
|
Stopwatch sw = new Stopwatch();
|
|
sw.Start();
|
|
Console.WriteLine("Hi mom !");
|
|
Console.WriteLine("doing a schmunguss");
|
|
sw.Stop();
|
|
|
|
Console.WriteLine("Time elapsed: {0}", sw.Elapsed);
|
|
*/
|