public bool Equals(EffectString other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) && Equals(other.m_value, m_value));
 }
 public EffectString(EffectString copy)
     : this(copy.Id, copy.m_value, copy)
 {
 }
Example #3
0
 public EffectString(EffectString copy)
     : this(copy.Id, copy.m_value, copy)
 {
     
 }
Example #4
0
 public bool Equals(EffectString other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return base.Equals(other) && Equals(other.m_value, m_value);
 }