public bool Equals(IMacro other)
 {
     return this.GetType() == other.GetType();
 }
예제 #2
0
 public bool Equals(IMacro other)
 {
     return other.GetType() == typeof(Switch);
 }
 public bool Equals(IMacro other)
 {
     return typeof(VectorLength) == other.GetType();
 }
 public bool Equals(IMacro other)
 {
     return other.GetType() == typeof(VectorToParameter);
 }
 public bool Equals(IMacro other)
 {
     return other.GetType() == typeof(InsertText);
 }