Beispiel #1
0
 bool ICustomTypeInfo.IsEquivalent(ICustomTypeInfo other)
 {
     if (other == null)
     {
         return false;
     }
     if (!string.Equals(this.CustomAssemblyPath, other.CustomAssemblyPath, StringComparison.OrdinalIgnoreCase))
     {
         return false;
     }
     if (!string.Equals(this.CustomMetadataPath, other.CustomMetadataPath, StringComparison.OrdinalIgnoreCase))
     {
         return false;
     }
     return (this.CustomTypeName == other.CustomTypeName);
 }
Beispiel #2
0
 public bool IsEquivalent(ICustomTypeInfo other)
 {
     throw new NotImplementedException();
 }