Hypothetically it\'d be handy for me to do this:
foo.GetColumnValues(dm.mainColumn, int) foo.GetColumnValues(dm.mainColumn, string)
where t
You can use an argument of type Type - iow, pass typeof(int). You can also use generics for a (probably more efficient) approach.