private bool Equals(ClassDefinition other)
 {
     return(string.Equals(Assembly, other.Assembly) && string.Equals(Name, other.Name) && string.Equals(Namespace, other.Namespace));
 }
Example #2
0
 public MethodDefinition(ClassDefinition @class, string name)
 {
     Class = @class;
     Name  = name;
 }