Esempio n. 1
0
        /// <summary>
        /// Performs a deep copy of the target <see cref="LinearStateEstimator.Measurements.PhasorBase"/> object
        /// </summary>
        /// <returns>A deep copy of the <see cref="LinearStateEstimator.Measurements.PhasorBase"/> object.</returns>
        public PhasorBase DeepCopy()
        {
            PhasorBase copy = (PhasorBase)this.MemberwiseClone();

            copy.BaseKV = m_baseKV.DeepCopy();
            copy.Type   = m_type;
            return(copy);
        }