Opc.Ua.Range.Range C# (CSharp) Method

Range() public method

Initializes the object with the high and low limits.
public Range ( double high, double low ) : System
high double
low double
return System
        public Range(double high, double low)
        {
            m_low  = low;
            m_high = high;

            // swap values if high is not actually higher.
            if (low > high)
            {
                m_high = low;
                m_low  = high;
            }
        }
Range