public override bool Equals(object rhs)
        {
            SerializedInstance <T> other = rhs as SerializedInstance <T>;

            if (other == null)
            {
                return(false);
            }
            else
            {
                return(other == this);
            }
        }
 public SerializedInstance(SerializedInstance <T> instance)
 {
     m_className    = instance.m_className;
     m_instanceData = instance.m_instanceData;
 }
Esempio n. 3
0
 public Serialized_object(SerializedInstance <T> instance) : base(instance.Object)
 {
     this._instence = instance;
 }