From 27df5dc1e66ab6347bcecadfc6a9fd8d855b9a76 Mon Sep 17 00:00:00 2001 From: di7chro Date: Thu, 18 Jun 2015 11:24:49 +0200 Subject: [PATCH] Exercise10 started --- Exercise10/Exercise10.sln | 22 +++++++ Exercise10/Exercise10/App.config | 6 ++ Exercise10/Exercise10/Exercise10.csproj | 60 +++++++++++++++++++ Exercise10/Exercise10/ListLoader.cs | 55 +++++++++++++++++ Exercise10/Exercise10/Program.cs | 23 +++++++ Exercise10/Exercise10/ProgrammingLanguage.cs | 14 +++++ .../Exercise10/Properties/AssemblyInfo.cs | 36 +++++++++++ 7 files changed, 216 insertions(+) create mode 100644 Exercise10/Exercise10.sln create mode 100644 Exercise10/Exercise10/App.config create mode 100644 Exercise10/Exercise10/Exercise10.csproj create mode 100644 Exercise10/Exercise10/ListLoader.cs create mode 100644 Exercise10/Exercise10/Program.cs create mode 100644 Exercise10/Exercise10/ProgrammingLanguage.cs create mode 100644 Exercise10/Exercise10/Properties/AssemblyInfo.cs diff --git a/Exercise10/Exercise10.sln b/Exercise10/Exercise10.sln new file mode 100644 index 0000000..d4139f5 --- /dev/null +++ b/Exercise10/Exercise10.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.30501.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exercise10", "Exercise10\Exercise10.csproj", "{4633E187-5A21-4397-92E9-C46675DB071D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4633E187-5A21-4397-92E9-C46675DB071D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4633E187-5A21-4397-92E9-C46675DB071D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4633E187-5A21-4397-92E9-C46675DB071D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4633E187-5A21-4397-92E9-C46675DB071D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Exercise10/Exercise10/App.config b/Exercise10/Exercise10/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/Exercise10/Exercise10/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Exercise10/Exercise10/Exercise10.csproj b/Exercise10/Exercise10/Exercise10.csproj new file mode 100644 index 0000000..f96f7a2 --- /dev/null +++ b/Exercise10/Exercise10/Exercise10.csproj @@ -0,0 +1,60 @@ + + + + + Debug + AnyCPU + {4633E187-5A21-4397-92E9-C46675DB071D} + Exe + Properties + Exercise10 + Exercise10 + v4.5 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Exercise10/Exercise10/ListLoader.cs b/Exercise10/Exercise10/ListLoader.cs new file mode 100644 index 0000000..247749e --- /dev/null +++ b/Exercise10/Exercise10/ListLoader.cs @@ -0,0 +1,55 @@ +using System.Collections.Generic; +using System.IO; + +namespace Exercise10 +{ + /// + /// A simple helper class + /// + public class ListLoader + { + public static List LoadLanguages() + { + var sr = new StreamReader("languageData.txt"); + var line = string.Empty; + var results = new List(); + + while ((line = sr.ReadLine()) != null) + { + var data = line.Split('\t'); + + // Wrong amount of fields on this row. Something is wrong with it. Skip it + if (data.Length != 3) + continue; + + var lang = CreateLanguageFromArray(data); + + if (lang != null) + results.Add(lang); + } + + return results; + } + + /// + /// Pre: Array length == 3 and + /// Post: + /// + /// The array to parse + /// A new ProgrammingLanguage object or null if parsing failed + private static ProgrammingLanguage CreateLanguageFromArray(string[] array) + { + int year; + + if (!int.TryParse(array[1], out year)) + return null; + + return new ProgrammingLanguage + { + Name = array[0], + ReleaseYear = year, + Description = array[2] + }; + } + } +} \ No newline at end of file diff --git a/Exercise10/Exercise10/Program.cs b/Exercise10/Exercise10/Program.cs new file mode 100644 index 0000000..5176ffb --- /dev/null +++ b/Exercise10/Exercise10/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Exercise10 +{ + class Program + { + static void Main(string[] args) + { + WaitForInput(); + } + + private static void WaitForInput() + { + Console.WriteLine("\nPress a key..."); + Console.ReadLine(); + } + + } +} diff --git a/Exercise10/Exercise10/ProgrammingLanguage.cs b/Exercise10/Exercise10/ProgrammingLanguage.cs new file mode 100644 index 0000000..fc13c80 --- /dev/null +++ b/Exercise10/Exercise10/ProgrammingLanguage.cs @@ -0,0 +1,14 @@ +namespace Exercise10 +{ + public class ProgrammingLanguage + { + public string Name { get; set; } + public string Description { get; set; } + public int ReleaseYear { get; set; } + + public override string ToString() + { + return string.Format("(Released: {0}) {1}", ReleaseYear, Name); + } + } +} \ No newline at end of file diff --git a/Exercise10/Exercise10/Properties/AssemblyInfo.cs b/Exercise10/Exercise10/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..75f787c --- /dev/null +++ b/Exercise10/Exercise10/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Exercise10")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Exercise10")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("87b8f849-b510-4f06-b743-b23ebcf66499")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]