public MainWindow() { InitializeComponent(); string docPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); pathAndFilename = Path.Combine(docPath, filename); ReadFile(); frågor.Add(new Questioncard("Vad hete Danmarks Huvudstad?", "Köpenhamn")); frågor.Add(new Questioncard("Vad heter Norges Huvudstad?", "Oslo")); frågor.Add(new Questioncard("Vad hete Finlands Huvudstad?", "Helsingfors")); q = frågor[CurrentQ]; Fråga1.Text = q.question; }
private void ReadFile() { try { // Open the text file using a stream reader. using (var sr = new StreamReader(pathAndFilename)) { string q; string ans; ans = sr.ReadLine(); q = sr.ReadLine(); while (q != null) { frågor.Add(new Questioncard(ans, q)); ans = sr.ReadLine(); q = sr.ReadLine(); } } } catch (IOException e) { Fråga1.Text = "The file could not be read:" + e.Message; } }