1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00

Make conversion operators use standard method matcher

This commit is contained in:
Brian Fiete 2022-01-17 16:14:40 -05:00
parent 15e1986a1c
commit c7d2d2e9bd
8 changed files with 280 additions and 398 deletions

View file

@ -1341,7 +1341,7 @@ namespace System
public Result<void> AppendF(StringView format, params Object[] args)
{
return AppendF(null, format, params args);
return AppendF((IFormatProvider)null, format, params args);
}
public int IndexOf(StringView subStr, bool ignoreCase = false)