Inheritance: AbstractNode, IType
Esempio n. 1
0
 /// <summary>
 /// Compares this instance to another instance by comparing the name of the type.
 /// </summary>
 protected bool Equals(NamedType other)
 {
     return(string.Equals(Name, other.Name, StringComparison.InvariantCulture));
 }