Kaynağa Gözat

Preparing day 5

Lukas Angerer 2 yıl önce
ebeveyn
işleme
295d2195fe
2 değiştirilmiş dosya ile 22 ekleme ve 0 silme
  1. 10 0
      Day5/Day5.csproj
  2. 12 0
      Day5/Program.cs

+ 10 - 0
Day5/Day5.csproj

@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>net8.0</TargetFramework>
+    <ImplicitUsings>enable</ImplicitUsings>
+    <Nullable>enable</Nullable>
+  </PropertyGroup>
+
+</Project>

+ 12 - 0
Day5/Program.cs

@@ -0,0 +1,12 @@
+using Day5;
+
+if (args.Length < 1)
+{
+    Console.WriteLine("Requires 1 args: inputFileName");
+    return -1;
+}
+
+var inputFile = args[0];
+
+
+return 0;