ATMLModelLibrary.model.RangingInformation.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : object
return object
        public object Clone()
        {
            var clone = new RangingInformation();
            clone._fromQuantity = _fromQuantity.Clone() as Quantity;
            clone._toQuantity = _toQuantity.Clone() as Quantity;
            clone.ErrorLimit = _errorLimit.Clone() as ErrorLimit;
            clone.Magnitude = _magnitude;
            return clone;
        }