Vector.WithElement<T>(Vector<T>, Int32, T) 方法

定义

创建一个新的 Vector<T>,将指定索引处的元素设置为指定值,并将其余元素设置为与给定向量中的值相同的值。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector<T> WithElement(System::Numerics::Vector<T> vector, int index, T value);
public static System.Numerics.Vector<T> WithElement<T> (this System.Numerics.Vector<T> vector, int index, T value);
static member WithElement : System.Numerics.Vector<'T> * int * 'T -> System.Numerics.Vector<'T>
<Extension()>
Public Function WithElement(Of T) (vector As Vector(Of T), index As Integer, value As T) As Vector(Of T)

类型参数

T

向量中元素的类型。

参数

vector
Vector<T>

要从中获取剩余元素的向量。

index
Int32

要设置的元素的索引。

value
T

要将元素设置到的值。

返回

一个 Vector<T>,将 index 处的元素值设置为 value,并将其余元素设置为与 vector 中的值相同的值。

例外

index 小于零或者大于元素个数。

不支持 vector 类型 (T)。

适用于