Beispiel #1
0
        // override object.Equals
        public override bool Equals(object obj)
        {
            if (obj == null || GetType() != obj.GetType())
            {
                return(false);
            }

            IdNamePair that = obj as IdNamePair;

            return(this.Id == that.Id);
        }
Beispiel #2
0
 public SettingIOEventArgs(IdNamePair settingPair)
 {
     this.SettingPair = settingPair;
 }