SignatureHelper.GetLocalVarSigHelper Method

Definition

Returns a signature helper for a local variable.

Overloads

GetLocalVarSigHelper()

Returns a signature helper for a local variable.

GetLocalVarSigHelper(Module)

Returns a signature helper for a local variable.

GetLocalVarSigHelper()

Source:
SignatureHelper.cs
Source:
SignatureHelper.cs
Source:
SignatureHelper.cs

Returns a signature helper for a local variable.

public:
 static System::Reflection::Emit::SignatureHelper ^ GetLocalVarSigHelper();
public static System.Reflection.Emit.SignatureHelper GetLocalVarSigHelper ();
static member GetLocalVarSigHelper : unit -> System.Reflection.Emit.SignatureHelper
Public Shared Function GetLocalVarSigHelper () As SignatureHelper

Returns

A SignatureHelper for a local variable.

Applies to

GetLocalVarSigHelper(Module)

Source:
SignatureHelper.cs
Source:
SignatureHelper.cs
Source:
SignatureHelper.cs

Returns a signature helper for a local variable.

public:
 static System::Reflection::Emit::SignatureHelper ^ GetLocalVarSigHelper(System::Reflection::Module ^ mod);
public static System.Reflection.Emit.SignatureHelper GetLocalVarSigHelper (System.Reflection.Module? mod);
public static System.Reflection.Emit.SignatureHelper GetLocalVarSigHelper (System.Reflection.Module mod);
static member GetLocalVarSigHelper : System.Reflection.Module -> System.Reflection.Emit.SignatureHelper
Public Shared Function GetLocalVarSigHelper (mod As Module) As SignatureHelper

Parameters

mod
Module

The dynamic module that contains the local variable for which the SignatureHelper is requested.

Returns

The SignatureHelper object for a local variable.

Applies to