Ejemplo n.º 1
0
 public bool IsExtensionOf(IExtendableType type)
 {
     if (this.m_baseType is not null)
     {
         return(this.m_baseType == type || this.m_baseType.IsExtensionOf(type));
     }
     else
     {
         return(false);
     }
 }
Ejemplo n.º 2
0
 public bool IsExtensionOf(IExtendableType type) => throw new NotImplementedException();