IConverter<TValue,TSurrogate> 接口

定义

用于在两种类型之间进行转换的功能。

public interface IConverter<TValue,TSurrogate> where TSurrogate : struct
type IConverter<'Value, 'Surrogate (requires 'Surrogate : struct)> = interface
Public Interface IConverter(Of TValue, TSurrogate)

类型参数

TValue
TSurrogate

方法

ConvertFromSurrogate(TSurrogate)

将代理项值转换为值类型。

ConvertToSurrogate(TValue)

将值转换为值类型。

适用于