Beispiel #1
0
 public bool IsChanged(LastEventData other)
 {
     if (other != null && type.Equals(other.type) && tool.Equals(other.tool) && coordinates.SequenceEqual(other.coordinates))
     {
         return(otherParameters.SequenceEqual(other.otherParameters));
     }
     return(false);
 }
Beispiel #2
0
 public LastEventArgs(LastEventData data)
 {
     this.data = data;
 }