MemoryPolyfillExtensionTrimStart Method
Removes all leading white space characters from a character memory
region.
Namespace: FolkerKinzel.StringsAssembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.0+10a7d4d71aa960998e32ac0ac6c4fcbe4164c917
public static Memory<char> TrimStart(
this Memory<char> memory
)
<ExtensionAttribute>
Public Shared Function TrimStart (
memory As Memory(Of Char)
) As Memory(Of Char)
public:
[ExtensionAttribute]
static Memory<wchar_t> TrimStart(
Memory<wchar_t> memory
)
[<ExtensionAttribute>]
static member TrimStart :
memory : Memory<char> -> Memory<char>
- memory MemoryChar
- The source memory from which the characters are removed.
MemoryCharThe trimmed character memory region.In Visual Basic and C#, you can call this method as an instance method on any object of type
MemoryChar. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).