本文整理汇总了C#中IType.Show方法的典型用法代码示例。如果您正苦于以下问题:C# IType.Show方法的具体用法?C# IType.Show怎么用?C# IType.Show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IType
的用法示例。
在下文中一共展示了IType.Show方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Unroll
public static IType Unroll(IType type)
{
/*
(TApp TCRec (TAbs unique type3)) = type
return UnrollRecursiveType(type3, unique);
*/
if (type is TApp)
{
IType type1 = ((TApp)type).Function;
IType type2 = ((TApp)type).Argument;
if (type1 is TCRec)
{
if (type2 is TAbs)
{
Unique unique = ((TAbs)type2).Parameter;
IType type3 = ((TAbs)type2).Body;
return UnrollRecursiveType(type3, unique);
}
}
}
throw new ArgumentException(
string.Format(
"{0} is not a recursive type", type.Show()
)
);
}
示例2: CheckFunctionTypeApp
private IType CheckFunctionTypeApp(
IType parameterType,
IType returnType,
IType argumentType
)
{
if (!argumentType.Equals(parameterType))
{
throw new ArgumentException(
string.Format(
"unexpected {0}, expected {1}",
argumentType.Show(),
parameterType.Show()
)
);
}
return returnType;
}