C# 클래스 Jurassic.Compiler.FieldSetterBinder

Sets the value of a field.
상속: FieldBinder
파일 보기 프로젝트 열기: paulbartrum/jurassic

공개 메소드들

메소드 설명
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