Visual Basic Programozás, segítsetek nekem
  • Easy Rider
    #289
    If menugomb.Key = ConsoleKey.F2 Then

    Try

    Dim gameRules As StreamReader = New StreamReader("jatekszabaly.txt");
    Dim line As String

    Do
    line = gameRules.ReadLine();
    Console.WriteLine(line);
    Loop Until line Is Nothing
    gameRules.Close();

    Catch e As Exception

    Console.Write("Something went really baaaaad : ");
    Console.WriteLine(e.Message);

    End Try

    End If