Ejemplo n.º 1
0
        /// <summary>
        /// Returns a value indicating whether this instance is equal to a specified value
        /// </summary>
        public override bool Equals(object obj)
        {
            AtomicInt64 atom = (AtomicInt64)obj;

            if (atom == default(AtomicInt64))
            {
                return(false);
            }

            return(atom.fValue == fValue);
        }