Exemple #1
0
 public bool Equals(IReplayILGen other)
 {
     if (!(other is EmitILField v))
     {
         return(false);
     }
     return(_opCode == v._opCode && _ilField.Equals(v._ilField));
 }
Exemple #2
0
            public bool Equals(IReplayILGen other)
            {
                var v = other as EmitILField;

                if (v == null)
                {
                    return(false);
                }
                return(_opCode == v._opCode && _ilField.Equals(v._ilField));
            }