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

NumericRange() public method

Initializes the object with a begin index.
Initializes the object with a begin index.
Thrown when the parameter is less than -1
public NumericRange ( int begin ) : System
begin int The starting point of the range
return System
        public NumericRange(int begin)
        {
            if (begin < -1)
            {
                throw new ArgumentOutOfRangeException("begin");
            }

            m_begin = -1;
            m_end = -1;
            m_subranges = null;

            Begin = begin;
        }

Same methods

NumericRange::NumericRange ( int begin, int end ) : System