本文整理汇总了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 ());
}
}