forked from karan/Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
31 lines (30 loc) · 784 Bytes
/
Program.cs
File metadata and controls
31 lines (30 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//-----------------------------------------------------------------------
// <copyright file="Program.cs" company="Tyson J. Hayes">
// Copyright (c), Tyson J. Hayes. All rights reserved.
// </copyright>
// <summary>
// Base Program
// </summary>
// <author>
// Tyson J. Hayes (jobs@tysonjhayes.com)
// </author>
//-----------------------------------------------------------------------
namespace MegaProjectList
{
/// <summary>
/// The program.
/// </summary>
public class Program
{
/// <summary>
/// The main.
/// </summary>
/// <param name="args">
/// The args.
/// </param>
public static void Main(string[] args)
{
// string input = "this is a string";
}
}
}