cs11dotnet7/vscode/Chapter06/CodeAnalyzing/Program.cs

24 lines
535 B
C#
Raw Normal View History

2022-02-27 20:08:52 +01:00
// <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!");
}
}