I use this command to check for the Computername wich returns:
SystemInformation::ComputerName->ToString();
//returns: MYCOMP-EG03R8F
When manually rightclicking "My Computer" and check what name I have, it says with lowcase letters:
mycomp-eg03r8f
So it doesn´t return the correct name. It shows Capitals.
But if I do this command instead:
SystemInformation::ComputerName->ToLower()->ToString();
I do get the same computername:
mycomp-eg03r8f
Is it okay to use ->ToLower() when it is a mix with letters and numbers. The function is intelligent and separates letters from numbers ?
Thank you if someone can confirm that...