Created
May 25, 2020 10:51
-
-
Save luisdeol/b7a99065fc80386897aa18fe8f18cf5d to your computer and use it in GitHub Desktop.
3.5 Debug Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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