Merge pull request #88453 from Repiteo/dotnet/stringextensions-match-core
C#: Match Core implementation of `BinToInt` & `HexToInt`
This commit is contained in:
commit
59f966646c
1 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ namespace Godot
|
|||
instance = instance.Substring(1);
|
||||
}
|
||||
|
||||
if (instance.StartsWith("0b"))
|
||||
if (instance.StartsWith("0b", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
instance = instance.Substring(2);
|
||||
}
|
||||
|
@ -816,7 +816,7 @@ namespace Godot
|
|||
instance = instance.Substring(1);
|
||||
}
|
||||
|
||||
if (instance.StartsWith("0x"))
|
||||
if (instance.StartsWith("0x", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
instance = instance.Substring(2);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue