Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' of https://github.com/dotnet/runtime into unroll-…
…startswith

# Conflicts:
#	src/libraries/System.Private.CoreLib/src/System/String.Comparison.cs
  • Loading branch information
EgorBo committed Feb 9, 2022
commit d195951d35f376025c86314f9ecce31df324e1b9
Original file line number Diff line number Diff line change
Expand Up @@ -1046,10 +1046,6 @@ static int GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(string str)
//
public bool StartsWith(string value!!)
{
if (value is null)
{
throw new ArgumentNullException(nameof(value));
}
return CultureInfo.CurrentCulture.CompareInfo.IsPrefix(this, value, GetCaseCompareOfComparisonCulture(StringComparison.CurrentCulture));
}

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.