hi,guys.........
i am doing a VB program using four for loops to generate a set of numbers using the following code.....
For sphere = 1 To 10
For cylinder = 2 To 20
For axis = 3 To 30
For add = 4 To 40
Console.WriteLine("{0} , {1},{2},{3} ", _
sphere, cylinder, axis, add)
Next add
Next axis
Next cylinder
Next sphere
i need to export the output of this program to CSV format...... can any one help me by giving a suitable code for doing the same.......