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

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

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

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

Creates a new FieldSetterBinder instance.

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

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

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

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

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

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