2 using System.Collections.Generic;
4 namespace Lextm.SharpSnmpLib.Mib
8 public bool IsSizeDeclaration {
get;
internal set; }
12 IsSizeDeclaration = isSizeDecl;
31 private readonly Int64 _start;
32 private readonly Int64? _end;
42 get {
return _start; }
52 if (this._end == null)
56 else if (other._end == null)
58 return this.Contains(other._start);
61 return (this._start <= other.
End) && (this._end >= other._start);
68 return value == _start;
72 return (_start <= value) && (value <= _end);
ValueRanges(bool isSizeDecl=false)
ValueRange(Int64 first, Int64?second)
bool Contains(Int64 value)
bool Contains(Int64 value)
bool IntersectsWith(ValueRange other)