C# 클래스 BindingsGenerator.Parameter

"int foo" or "const char *str"
파일 보기 프로젝트 열기: realXtend/tundra-urho3d 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
comment string
defaultValue string
name string
type string

공개 메소드들

메소드 설명
BasicType ( ) : string

If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3*". If type "const float3 * const" -> BasicType() returns "const float3*".

BasicTypeId ( ) : string

Returns the basic type as a sanitated identifier. If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3_ptr". If type "const float3 * const" -> BasicType() returns "float3_ptr".

BasicTypeRetainReference ( ) : string
IsAPointer ( ) : bool
IsAReference ( ) : bool

메소드 상세

BasicType() 공개 메소드

If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3*". If type "const float3 * const" -> BasicType() returns "const float3*".
public BasicType ( ) : string
리턴 string

BasicTypeId() 공개 메소드

Returns the basic type as a sanitated identifier. If type "const float3 &" -> BasicType() returns "float3". If type "const float3 &" -> BasicType() returns "float3". If type "float3 * const" -> BasicType() returns "float3_ptr". If type "const float3 * const" -> BasicType() returns "float3_ptr".
public BasicTypeId ( ) : string
리턴 string

BasicTypeRetainReference() 공개 메소드

public BasicTypeRetainReference ( ) : string
리턴 string

IsAPointer() 공개 메소드

public IsAPointer ( ) : bool
리턴 bool

IsAReference() 공개 메소드

public IsAReference ( ) : bool
리턴 bool

프로퍼티 상세

comment 공개적으로 프로퍼티

public string comment
리턴 string

defaultValue 공개적으로 프로퍼티

public string defaultValue
리턴 string

name 공개적으로 프로퍼티

public string name
리턴 string

type 공개적으로 프로퍼티

public string type
리턴 string