All pastes #2128002 Raw Edit

Anonymous

public text v1 · immutable
#2128002 ·published 2012-03-14 03:28 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;
        }