Hypothetically it\'d be handy for me to do this:
foo.GetColumnValues(dm.mainColumn, int) foo.GetColumnValues(dm.mainColumn, string)
where t
You can do this, just wrap it in typeof()
typeof()
foo.GetColumnValues(typeof(int)) public void GetColumnValues(Type type) { //logic }