What does it mean to convert to CSV? If you want to generate a comma-separated string, you can use this ( tbl is your DataTable and Int-Column is the name of DataColumn):
String.Join(",", (From row In tbl.AsEnumerable Select row("Int-Column")).ToArray)
CSV is usually a file format where columns are separated by a comma (or other delimiters) and lines are separated by new lines. Therefore, you just need to replace String.Join("," with String.Join(Environment.NewLine
source share