mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-06 06:43:47 +00:00
Initial commit
This commit is contained in:
parent
bc96ccb183
commit
18f89e91d4
62 changed files with 1661 additions and 2 deletions
23
vs4win/Chapter06/CodeAnalyzing/Program.cs
Normal file
23
vs4win/Chapter06/CodeAnalyzing/Program.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
// <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!");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue