ISpanParsable<TSelf> 接口

定义

定义一种机制,用于将字符范围分析为值。

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

类型参数

TSelf

实现此接口的类型。

派生
实现

方法

Parse(ReadOnlySpan<Char>, IFormatProvider)

将字符范围解析为值。

TryParse(ReadOnlySpan<Char>, IFormatProvider, TSelf)

尝试将字符范围解析为值。

适用于