| | | ||||
| Microsoft Visual Studio Solution File, Format Version 12.00 | Microsoft Visual Studio Solution File, Format Version 12.00 | ||||
| # Visual Studio 14 | # Visual Studio 14 | ||||
| VisualStudioVersion = 14.0.24720.0 | |||||
| VisualStudioVersion = 14.0.25123.0 | |||||
| MinimumVisualStudioVersion = 10.0.40219.1 | MinimumVisualStudioVersion = 10.0.40219.1 | ||||
| Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DF41F5CE-8BCB-40CC-835F-54A3DB7D802F}" | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DF41F5CE-8BCB-40CC-835F-54A3DB7D802F}" | ||||
| ProjectSection(SolutionItems) = preProject | ProjectSection(SolutionItems) = preProject |
| // You can specify all the values or you can default the Build and Revision Numbers | // You can specify all the values or you can default the Build and Revision Numbers | ||||
| // by using the '*' as shown below: | // by using the '*' as shown below: | ||||
| // [assembly: AssemblyVersion("1.0.*")] | // [assembly: AssemblyVersion("1.0.*")] | ||||
| [assembly: AssemblyVersion("1.0.0.22")] | |||||
| [assembly: AssemblyFileVersion("1.0.0.22")] | |||||
| [assembly: AssemblyVersion("1.0.0.23")] | |||||
| [assembly: AssemblyFileVersion("1.0.0.23")] |
| static void Main(string[] args) | static void Main(string[] args) | ||||
| { | { | ||||
| Setup(); | Setup(); | ||||
| HelloWorld(); | |||||
| //Contents(); | |||||
| AddList(); | |||||
| Console.ReadLine(); | |||||
| // Examples(); | |||||
| Examples(); | |||||
| } | } | ||||
| static void Examples() | static void Examples() | ||||
| { | { | ||||
| // Setup(); | |||||
| // Easy | // Easy | ||||
| Console.WriteLine("\nRunning Easy Examples"); | Console.WriteLine("\nRunning Easy Examples"); | ||||
| HelloWorld(); | HelloWorld(); | ||||
| DocumentHeading(); | DocumentHeading(); | ||||
| LargeTable(); | LargeTable(); | ||||
| TableWithSpecifiedWidths(); | TableWithSpecifiedWidths(); | ||||
| //Contents(); | |||||
| // Advanced | // Advanced | ||||
| Console.WriteLine("\nRunning Advanced Examples"); | Console.WriteLine("\nRunning Advanced Examples"); |
| } | } | ||||
| public Boolean Up() | public Boolean Up() | ||||
| { | { | ||||
| return Up(1); | return Up(1); | ||||
| } | } |