PrivateType.SetStaticArrayElement Method (String, Object, array<Int32 )

Sets a static array element contained in the wrapped type.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Syntax

'Declaration
Public Sub SetStaticArrayElement ( _
    name As String, _
    value As Object, _
    ParamArray indices As Integer() _
)
public void SetStaticArrayElement(
    string name,
    Object value,
    params int[] indices
)
public:
void SetStaticArrayElement(
    String^ name, 
    Object^ value, 
    ... array<int>^ indices
)
member SetStaticArrayElement : 
        name:string * 
        value:Object * 
        indices:int[] -> unit
public function SetStaticArrayElement(
    name : String, 
    value : Object, 
    ... indices : int[]
)

Parameters

  • name
    Type: String

    The name of the array

  • value
    Type: Object

    The value to set the element identified by indices.

  • indices
    Type: array<Int32[]

    An array of subscripts for identifying the element to set.

.NET Framework Security

See Also

Reference

PrivateType Class

SetStaticArrayElement Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace