Browse Source

ReplaceFirst: StackAllock till 1KB

pull/15878/head
Merijn Geurts 4 years ago
committed by GitHub
parent
commit
20c3e16e33
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.Core/System/AbpStringExtensions.cs

2
framework/src/Volo.Abp.Core/System/AbpStringExtensions.cs

@ -213,7 +213,7 @@ public static class AbpStringExtensions
var replaceLength = replace.Length;
var newLength = str.Length - searchLength + replaceLength;
Span<char> buffer = stackalloc char[newLength];
Span<char> buffer = newLength <= 1024 ? stackalloc char[newLength] : new char[newLength];
// Copy the part of the original string before the search term
str.AsSpan(0, pos).CopyTo(buffer);

Loading…
Cancel
Save