cs11dotnet7/vscode/Chapter06/CodeAnalyzing/Program.cs
2022-02-27 19:08:52 +00:00

24 lines
535 B
C#

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