Beispiel #1
0
 /// <summary>Returns whether this CommandInfo instance is equal to the specified object</summary>
 /// <remarks>This ignores the translated command description</remarks>
 public override bool Equals(object obj)
 {
     if (obj is CommandInfo)
     {
         CommandInfo newCommandInfo = (CommandInfo)obj;
         return(newCommandInfo.Equals(this));
     }
     return(false);
 }