本文整理匯總了C#中System.TypeSpec.ToString方法的典型用法代碼示例。如果您正苦於以下問題:C# TypeSpec.ToString方法的具體用法?C# TypeSpec.ToString怎麽用?C# TypeSpec.ToString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.TypeSpec
的用法示例。
在下文中一共展示了TypeSpec.ToString方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Encode
public void Encode (TypeSpec type)
{
if (type == TypeManager.bool_type) {
Stream.Write ((byte) 0x02);
} else if (type == TypeManager.char_type) {
Stream.Write ((byte) 0x03);
} else if (type == TypeManager.sbyte_type) {
Stream.Write ((byte) 0x04);
} else if (type == TypeManager.byte_type) {
Stream.Write ((byte) 0x05);
} else if (type == TypeManager.short_type) {
Stream.Write ((byte) 0x06);
} else if (type == TypeManager.ushort_type) {
Stream.Write ((byte) 0x07);
} else if (type == TypeManager.int32_type) {
Stream.Write ((byte) 0x08);
} else if (type == TypeManager.uint32_type) {
Stream.Write ((byte) 0x09);
} else if (type == TypeManager.int64_type) {
Stream.Write ((byte) 0x0A);
} else if (type == TypeManager.uint64_type) {
Stream.Write ((byte) 0x0B);
} else if (type == TypeManager.float_type) {
Stream.Write ((byte) 0x0C);
} else if (type == TypeManager.double_type) {
Stream.Write ((byte) 0x0D);
} else if (type == TypeManager.string_type) {
Stream.Write ((byte) 0x0E);
} else if (type == TypeManager.type_type) {
Stream.Write ((byte) 0x50);
} else if (type == TypeManager.object_type) {
Stream.Write ((byte) 0x51);
} else if (TypeManager.IsEnumType (type)) {
Stream.Write ((byte) 0x55);
EncodeTypeName (type);
} else if (type.IsArray) {
Stream.Write ((byte) 0x1D);
Encode (TypeManager.GetElementType (type));
} else {
throw new NotImplementedException (type.ToString ());
}
}