-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Style
]: move string extension method to StringExtension.cs
#3808
[Style
]: move string extension method to StringExtension.cs
#3808
Conversation
Style
]: move string extension method to StringExtension.csStyle
]: move string extension method to StringExtension.cs
/// <param name="value">The byte span to convert.</param> | ||
/// <returns>The converted string.</returns> | ||
[MethodImpl(MethodImplOptions.AggressiveInlining)] | ||
public static string GetStrictUTF8String(this ReadOnlySpan<byte> value) => StrictUTF8.GetString(value); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is extensions get
doesn't make sense here. AsStrictUtf8String
is a better name. Make sure UTF
isnt capital letters. It should be Utf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Co-authored-by: Shargon <shargon@gmail.com>
Description
Add string extension methods:
GetStrictUTF8String
GetStrictUTF8Bytes
GetStrictUTF8BytesCount
.Move some string extensions methods to StringExtension.cs.
Fixes # (issue)
Type of change
Checklist: