C# Класс Jurassic.Compiler.FieldGetterBinder

Retrieves the value of a field.
Наследование: FieldBinder
Показать файл Открыть проект

Открытые методы

Метод Описание
FieldGetterBinder ( FieldInfo field ) : System

Creates a new FieldGetterBinder instance.

Защищенные методы

Метод Описание
GenerateStub ( ILGenerator generator, int argumentCount ) : void

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

Описание методов

FieldGetterBinder() публичный Метод

Creates a new FieldGetterBinder instance.
public FieldGetterBinder ( FieldInfo field ) : System
field System.Reflection.FieldInfo The field.
Результат System

GenerateStub() защищенный Метод

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.
Результат void