// // Copyright (c) Packt. All rights reserved. // namespace CodeAnalyzing; using System.Diagnostics; /// /// The main class for this console app. /// public class Program { /// /// The main entry point for this console app. /// /// /// A string array of arguments passed to the console app. /// public static void Main(string[] args) { Debug.WriteLine("Hello, Debugger!"); } }