Im getting the error in the title in my code and dont know why. I just started my first class today so im quite lost. Have looked in my school books and cant find anything.
Here is the code:
        Console.WriteLine("Vad heter du i förnamn?");
        string förnamn = Console.ReadLine();
        Console.WriteLine("Vad heter du i efternamn?");
        string efternamn = Console.ReadLine();
        String namn = förnamn + " " + efternamn;
        Console.WriteLine("Hur gammal är du?");
        int ålder = Console.ReadLine();      <----- ERROR HERE
        int pension = ålder - 65;
Sorry if the text is in swedish aswell....
Thanks in advance!
