1 using System;
2 using System.Collections;
3
4
5
6
7
8 namespace System.Parsing
9 {
10 public class Range
11 {
12 public constexpr nothrow Range(int first_, int last_) : first(first_), last(last_) {}
13 public int first;
14 public int last;
15 }
16 }