ILGenerator.UsingNamespace(String) Method

Definition

Specifies the namespace to be used in evaluating locals and watches for the current active lexical scope.

public:
 void UsingNamespace(System::String ^ usingNamespace);
public:
 virtual void UsingNamespace(System::String ^ usingNamespace);
public void UsingNamespace(string usingNamespace);
public virtual void UsingNamespace(string usingNamespace);
member this.UsingNamespace : string -> unit
abstract member UsingNamespace : string -> unit
override this.UsingNamespace : string -> unit
Public Sub UsingNamespace (usingNamespace As String)
Public Overridable Sub UsingNamespace (usingNamespace As String)

Parameters

usingNamespace
String

The namespace to be used in evaluating locals and watches for the current active lexical scope.

Exceptions

Length of usingNamespace is zero.

usingNamespace is null.

Remarks

If the current ILGenerator is associated with a DynamicMethod object, this method is not supported.

Applies to