本文整理汇总了C#中System.Reflection.TypeInfo.IsSubclassOf方法的典型用法代码示例。如果您正苦于以下问题:C# TypeInfo.IsSubclassOf方法的具体用法?C# TypeInfo.IsSubclassOf怎么用?C# TypeInfo.IsSubclassOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Reflection.TypeInfo
的用法示例。
在下文中一共展示了TypeInfo.IsSubclassOf方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IsAssignableFrom
public virtual bool IsAssignableFrom(TypeInfo typeInfo)
{
if (typeInfo == null)
return false;
if (this == typeInfo)
return true;
// If c is a subclass of this class, then c can be cast to this type.
if (typeInfo.IsSubclassOf(this))
return true;
if (this.IsInterface)
{
return typeInfo.ImplementInterface(this);
}
else if (IsGenericParameter)
{
Type[] constraints = GetGenericParameterConstraints();
for (int i = 0; i < constraints.Length; i++)
if (!constraints[i].IsAssignableFrom(typeInfo))
return false;
return true;
}
return false;
}
示例2: IsAssignableFrom
/// <summary>
/// Returns a value that indicates whether the specified type can be assigned to the current type.
/// </summary>
/// <param name="typeInfo">The type to check.</param>
/// <returns>True if the specified type can be assigned to this type; otherwise, False.</returns>
public virtual bool IsAssignableFrom(TypeInfo typeInfo)
{
if (typeInfo == null)
return false;
if (typeInfo == this)
return true;
if (typeInfo.IsSubclassOf(this.AsType()))
return true;
return false;
}