mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
24 lines
535 B
C#
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!");
|
|||
|
|
}
|
|||
|
|
}
|