So here's the code that I think you'll need to understand what I'm talking about:
Code:
static void quit(string a, int b, ref List<string> c)
{
if (a == "-q")
c.RemoveRange(b + 1, c.Capacity - b);
}
static void Main(string[] args)
{
listNums = 0
Leave a comment: