C# Class Jurassic.Compiler.FieldGetterBinder

Retrieves the value of a field.
Inheritance: FieldBinder
Afficher le fichier Open project: paulbartrum/jurassic

Méthodes publiques

Méthode Description
FieldGetterBinder ( FieldInfo field ) : System

Creates a new FieldGetterBinder instance.

Méthodes protégées

Méthode Description
GenerateStub ( ILGenerator generator, int argumentCount ) : void

Generates a method that does type conversion and calls the bound method.

Method Details

FieldGetterBinder() public méthode

Creates a new FieldGetterBinder instance.
public FieldGetterBinder ( FieldInfo field ) : System
field System.Reflection.FieldInfo The field.
Résultat System

GenerateStub() protected méthode

Generates a method that does type conversion and calls the bound method.
protected GenerateStub ( ILGenerator generator, int argumentCount ) : void
generator ILGenerator The ILGenerator used to output the body of the method.
argumentCount int The number of arguments that will be passed to the delegate.
Résultat void