C# Class Jurassic.Compiler.FieldSetterBinder

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

Méthodes publiques

Méthode Description
FieldSetterBinder ( FieldInfo field ) : System

Creates a new FieldSetterBinder 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

FieldSetterBinder() public méthode

Creates a new FieldSetterBinder instance.
public FieldSetterBinder ( 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