ImmutableArray<T>.CastArray<TOther> 方法

定义

通过将基础数组转换为 TOther 类型的数组,初始化 ImmutableArray<T> 结构的新实例。

public:
generic <typename TOther>
 where TOther : class System::Collections::Immutable::ImmutableArray<TOther> CastArray();
public System.Collections.Immutable.ImmutableArray<TOther> CastArray<TOther> () where TOther : class;
member this.CastArray : unit -> System.Collections.Immutable.ImmutableArray<'Other (requires 'Other : null)> (requires 'Other : null)
Public Function CastArray(Of TOther As Class) () As ImmutableArray(Of TOther)

类型参数

TOther

要返回的数组元素类型。

返回

ImmutableArray<TOther>

其元素已转换为新类型的不可变数组实例。

例外

演员是非法的。

适用于