public static void Main()
string ogrno,naam,achternaam;
Console.WriteLine("voer studen nummer in:");
ogrno=Console.ReadLine();
Console.WriteLine("voer studen naam in:");
Console.WriteLine("voer studen achternaam in:");
achternaam=Console.ReadLine();
if(String.IsNullOrEmpty(ogrno)==true)
Console.WriteLine(" ogr no is leeg!!!");
if(string.IsNullOrEmpty(naam)==true)
Console.WriteLine("naam is nog niet ingevuld");
if(string.IsNullOrEmpty(achternaam)==true)
Console.WriteLine("achternaam is nog niet ingevuld");
if(string.IsNullOrEmpty(ogrno)==false&&string.IsNullOrEmpty(naam)==false&&string.IsNullOrEmpty(achternaam)==false)
Console.WriteLine("alles goed ingevuld");