From 9a3c385a5b694c8cb649f98f2af9459e77bbdfe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20=C3=96man?= Date: Mon, 17 Dec 2018 00:09:25 +0100 Subject: [PATCH] =?UTF-8?q?Lite=20mer=20f=C3=B6rberett?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2018_07/Program.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/2018_07/Program.cs b/2018_07/Program.cs index cb30b7f..b5c77f1 100644 --- a/2018_07/Program.cs +++ b/2018_07/Program.cs @@ -3,6 +3,8 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using System.IO; +using static System.Console; namespace _2018_07 { @@ -10,6 +12,9 @@ namespace _2018_07 { static void Main(string[] args) { + string[] resTab = File.ReadAllLines(@"..\..\..\Data\Adventofcode_181207\2018_07_data.txt"); + + } } }