Skip to content

Instantly share code, notes, and snippets.

@luisdeol
Created May 25, 2020 10:51
Show Gist options
  • Save luisdeol/b7a99065fc80386897aa18fe8f18cf5d to your computer and use it in GitHub Desktop.
Save luisdeol/b7a99065fc80386897aa18fe8f18cf5d to your computer and use it in GitHub Desktop.
3.5 Debug Class
using System;
using System.Diagnostics;
namespace _35_ApplicationDiagnostics
{
class Program
{
static void Main(string[] args)
{
Debug.WriteLine("Testing console logging");
Console.WriteLine("Hey");
Debug.WriteLine("Done.");
Console.Read();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment