C# 클래스 CSE.Exps.MethResObject

The internal representation of a method resolution object.
파일 보기 프로젝트 열기: kcherr1/CSharp-Eval 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Args dynamic[]
InvTypes System.Type[]
MethInfo System.Reflection.MethodInfo
OnlyAppInExpForm bool

공개 메소드들

메소드 설명
MethResObject ( MethodInfo methInfo, Type invTypes, dynamic args, bool onlyAppInExpForm = false ) : System

The constructor for creating a MethResObject.

메소드 상세

MethResObject() 공개 메소드

The constructor for creating a MethResObject.
public MethResObject ( MethodInfo methInfo, Type invTypes, dynamic args, bool onlyAppInExpForm = false ) : System
methInfo System.Reflection.MethodInfo The method information to set.
invTypes System.Type unused. Send null
args dynamic The argument list to set up for the constructed method resolution object.
onlyAppInExpForm bool Whether or not the method resolution applies only in expanded form.
리턴 System

프로퍼티 상세

Args 공개적으로 프로퍼티

The list of arguments for this method resolution.
public dynamic[] Args
리턴 dynamic[]

InvTypes 공개적으로 프로퍼티

InvTypes. Unused.
public Type[],System InvTypes
리턴 System.Type[]

MethInfo 공개적으로 프로퍼티

Method information object.
public MethodInfo,System.Reflection MethInfo
리턴 System.Reflection.MethodInfo

OnlyAppInExpForm 공개적으로 프로퍼티

If this method resolution should match only in "expanded form", as defined in the C# specification, this is marked true, otherwise false.
public bool OnlyAppInExpForm
리턴 bool