当前位置: 首页>>代码示例>>C#>>正文


C# TypeSpec.GetType方法代码示例

本文整理汇总了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>>";
		}
开发者ID:bbqchickenrobot,项目名称:playscript-mono,代码行数:36,代码来源:cxx-target.cs


注:本文中的System.TypeSpec.GetType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。