Vector64.AsUInt64<T>(Vector64<T>) 方法
定义
重要
此 API 不符合 CLS。
将 Vector64<T> 重新解释为 UInt64 类型的新 Vector64。Reinterprets a Vector64<T> as a new Vector64 of type UInt64.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector64<System::UInt64> AsUInt64(System::Runtime::Intrinsics::Vector64<T> vector);
[System.CLSCompliant(false)]
public static System.Runtime.Intrinsics.Vector64<ulong> AsUInt64<T> (this System.Runtime.Intrinsics.Vector64<T> vector) where T : struct;
[<System.CLSCompliant(false)>]
static member AsUInt64 : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector64<uint64> (requires 'T : struct)
<Extension()>
Public Function AsUInt64(Of T As Structure) (vector As Vector64(Of T)) As Vector64(Of ULong)
类型参数
- T
输入向量的类型。The type of the input vector.
参数
- vector
- Vector64<T>
要重新解释的向量。The vector to reinterpret.
返回
vector 重新解释为 UInt64 类型的新 Vector64。vector reinterpreted as a new Vector64 of type UInt64.
- 属性
例外
不支持 vector 类型 (T)。The type of vector (T) is not supported.