public bool Equals(GenerateMethod?other)
 => base.Equals(other) &&
 MethodToReplicateSymbolKey.Equals(other.MethodToReplicateSymbolKey);
 public bool Equals(GenerateEventHandler?other)
 => base.Equals(other) &&
 ContainerName == other.ContainerName &&
 EventSymbolKey.Equals(other.EventSymbolKey);
Example #3
0
 public bool Equals(AbstractGenerateCodeItem?other)
 => base.Equals(other) &&
 DestinationTypeSymbolKey.Equals(other.DestinationTypeSymbolKey);