I have the problem that when I want to type in the console e.g. 0x12345678 it should convert it to an uint
and save it as an uint
, but it crashes on me and says that it has the wrong format.
uint zahl = 0x12345678;uint zahl2;Console.Write(zahl); //Puts out into the Console: 305419896zahl2 = Convert.ToUInt32(Console.ReadLine()); //I type in the Console 0x12345678 and after I press Enter it crashesConsole.Write(zahl2);Console.ReadLine();