PrivateType.SetStaticField Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetStaticField(String, Object) |
Sets the static field |
SetStaticField(String, BindingFlags, Object) |
Sets the static field using binding attributes |
SetStaticField(String, Object)
Sets the static field
public:
void SetStaticField(System::String ^ name, System::Object ^ value);
public void SetStaticField (string name, object value);
member this.SetStaticField : string * obj -> unit
Public Sub SetStaticField (name As String, value As Object)
Parameters
- name
- String
Name of the field
- value
- Object
Argument to the invocation
Applies to
SetStaticField(String, BindingFlags, Object)
Sets the static field using binding attributes
public:
void SetStaticField(System::String ^ name, System::Reflection::BindingFlags bindingFlags, System::Object ^ value);
public void SetStaticField (string name, System.Reflection.BindingFlags bindingFlags, object value);
member this.SetStaticField : string * System.Reflection.BindingFlags * obj -> unit
Public Sub SetStaticField (name As String, bindingFlags As BindingFlags, value As Object)
Parameters
- name
- String
Name of the field
- bindingFlags
- BindingFlags
Additional InvokeHelper attributes
- value
- Object
Argument to the invocation