Method ExtString.Eqi(+ 1 overload)
Overload
Compares this and other string ignoring case (case-insensitive). Returns true
if equal.
public static bool Eqi(this string t, string s)
Parameters
Returns
Remarks
Uses ordinal comparison (does not depend on current culture/locale).
Overload(top)
Returns true
if equals to string s, case-insensitive.
public static bool Eqi(this ReadOnlySpan<char> t, ReadOnlySpan<char> s)
Parameters
t (ReadOnlySpan<char>)
This span. |
s (ReadOnlySpan<char>)
Other string. Can be |
Returns
Remarks
Uses ordinal comparison (does not depend on current culture/locale).