Vergleiche die zwei Namen „ROBONAME“ und inputName, aber ignoriere die Gross- und Kleinschreibung.
const string ROBONAME = "iRoby";
string inputName = "IROBY";
if (0 == string.Compare(ROBONAME, inputName, true))
{
Console.WriteLine($"Die Namen {ROBONAME} und {inputName} sind gleich.");
}
Nützliches
C# reference: https://docs.microsoft.com/en-us/dotnet/api/system.string.compare?view=net-5.0
Best practices for comparing strings in .NET: https://docs.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings