All pastes #2128001 Raw Edit

Anonymous

public text v1 · immutable
#2128001 ·published 2012-03-14 03:26 UTC
rendered paste body
        static public int[] GetInts(int count, List<string> values, int pos)
        {
            int[] ints = new int[count];
             for (int i = 0; i < count; i++)
             {
                 ints[i] = int.Parse(values[pos].Trim());
                 pos++;
             }
            return ints;
        }