ICodeGenerator.GetTypeOutput(CodeTypeReference) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取由指定的 CodeTypeReference 指示的类型。
public:
System::String ^ GetTypeOutput(System::CodeDom::CodeTypeReference ^ type);
public string GetTypeOutput (System.CodeDom.CodeTypeReference type);
abstract member GetTypeOutput : System.CodeDom.CodeTypeReference -> string
Public Function GetTypeOutput (type As CodeTypeReference) As String
参数
- type
- CodeTypeReference
指示返回类型的 CodeTypeReference。
返回
指定类型的文本表示形式,该类型针对此代码生成器生成代码时所使用的语言。 例如,在 Visual Basic 中,传入类型 System.Int32 将返回“Integer”。