Exemplo n.º 1
0
 public bool Equals(EffectInteger other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) && other.m_value == m_value);
 }
Exemplo n.º 2
0
 public bool Equals(EffectInteger other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return base.Equals(other) && other.m_value == m_value;
 }
Exemplo n.º 3
0
 public EffectInteger(EffectInteger copy)
     : this(copy.Id, copy.Value, copy)
 {
     
 }
Exemplo n.º 4
0
 public EffectInteger(EffectInteger copy)
     : this(copy.Id, copy.Value, copy)
 {
 }