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