本文整理汇总了C#中Type.InstanceType方法的典型用法代码示例。如果您正苦于以下问题:C# Type.InstanceType方法的具体用法?C# Type.InstanceType怎么用?C# Type.InstanceType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Type
的用法示例。
在下文中一共展示了Type.InstanceType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ErrorBadNullableType
public static void ErrorBadNullableType(this Log log, Location location, Type type)
{
if (type is ErrorType) {
return;
}
if (type is MetaType && type.InstanceType() is NullableType) {
log.Error(location, WrapType(type) + " is already nullable");
} else {
log.Error(location, WrapType(type) + " cannot be nullable");
}
}
示例2: EqualsType
public override bool EqualsType(Type other)
{
return other is MetaType && instanceType.EqualsType(other.InstanceType());
}
示例3: WrapType
private static string WrapType(Type type)
{
if (type is MetaType) {
return "type \"" + type.InstanceType() + "\"";
}
return "value of type \"" + type + "\"";
}