C# Класс BindingsGenerator.Parameter

"int foo" or "const char *str"
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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