本文整理匯總了C#中System.TypeSpec.GetType方法的典型用法代碼示例。如果您正苦於以下問題:C# TypeSpec.GetType方法的具體用法?C# TypeSpec.GetType怎麽用?C# TypeSpec.GetType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.TypeSpec
的用法示例。
在下文中一共展示了TypeSpec.GetType方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: InternalMakeCppTypeName
private string InternalMakeCppTypeName(TypeSpec t, bool ref_as_ptr, bool with_ns)
{
if (t is ArrayContainer) {
Report.Error (7179, "Unsupported basic type " + t.GetType ().Name);
return "<< " + t.GetType ().Name + " type>>";
}
if (t.MemberDefinition.Namespace == "System" && t.Name == "Void") {
return "void";
}
switch (t.BuiltinType) {
case BuiltinTypeSpec.Type.Byte: return "unsigned char";
case BuiltinTypeSpec.Type.SByte: return "signed char";
case BuiltinTypeSpec.Type.Short: return "short";
case BuiltinTypeSpec.Type.UShort: return "unsigned short";
case BuiltinTypeSpec.Type.Int: return "int";
case BuiltinTypeSpec.Type.UInt: return "unsigned int";
case BuiltinTypeSpec.Type.Long: return "long long";
case BuiltinTypeSpec.Type.ULong: return "unsigned long long";
case BuiltinTypeSpec.Type.Enum: return "int";
case BuiltinTypeSpec.Type.Bool: return "bool";
case BuiltinTypeSpec.Type.Float: return "float";
case BuiltinTypeSpec.Type.Double: return "double";
case BuiltinTypeSpec.Type.String: return "_root::String" + (ref_as_ptr ? "*" : "");
case BuiltinTypeSpec.Type.Object: return "_root::Object" + (ref_as_ptr ? "*" : "");
}
if (t.IsClass) {
return (with_ns ? t.MemberDefinition.Namespace.Replace(".", "::") + "::" : "") +
t.Name + (ref_as_ptr ? "*" : "");
}
Report.Error (7179, "Unsupported basic type " + t.Name);
return "<< " + t.Name + " type>>";
}