IUtf8SpanParsable<TSelf> Interface

Definition

Defines a mechanism for parsing a span of UTF-8 characters to a value.

generic <typename TSelf>
 where TSelf : IUtf8SpanParsable<TSelf>public interface class IUtf8SpanParsable
public interface IUtf8SpanParsable<TSelf> where TSelf : IUtf8SpanParsable<TSelf>
type IUtf8SpanParsable<'Self (requires 'Self :> IUtf8SpanParsable<'Self>)> = interface
Public Interface IUtf8SpanParsable(Of TSelf)

Type Parameters

TSelf

The type that implements this interface.

Derived

Methods

Parse(ReadOnlySpan<Byte>, IFormatProvider)

Parses a span of UTF-8 characters into a value.

TryParse(ReadOnlySpan<Byte>, IFormatProvider, TSelf)

Tries to parse a span of UTF-8 characters into a value.

Applies to