Exemplo n.º 1
0
        public override bool Equals(object obj)
        {
            StaticValue <t1, t2> tempValue = obj as StaticValue <t1, t2>;

            return(tempValue != null && tempValue.Value.Equals(this.Value));
        }
Exemplo n.º 2
0
 public StaticValue(StaticValue <t1, t2> AnotherStaticValue)
 {
     this.Value = AnotherStaticValue.Value;
 }