Ejemplo n.º 1
0
        public static string ToString(this IntervalValueType type, IntervalNotationPosition position)
        {
            switch (position)
            {
            case IntervalNotationPosition.Left:
                switch (type)
                {
                case IntervalValueType.Inclusive: return("[");

                case IntervalValueType.Exclusive: return("(");

                default:
                    throw new NotSupportedException();
                }

            case IntervalNotationPosition.Right:
                switch (type)
                {
                case IntervalValueType.Inclusive: return("]");

                case IntervalValueType.Exclusive: return(")");

                default:
                    throw new NotSupportedException();
                }

            default:
                throw new NotSupportedException();
            }
        }
 public IntervalValue(T value, IntervalValueType type)
 {
     if (value == null)
     {
         throw new ArgumentNullException(nameof(value));
     }
     this.value = value;
     this.type  = type;
 }