Hello Exeperts,
I am creating a csv file from my vb.net application as shown below
Dim csvFile As String = My.Application.Info.DirectoryPath & "\Test.csv"
Dim outFile As IO.StreamWriter = My.Computer.FileSystem.OpenTextFileWriter(csvFile, False)
outFile.WriteLine("Column 1, Column 2, Column 3")
outFile.WriteLine("1.23, 4.56, 123456545666644565554")
outFile.WriteLine("3.21, 6.54, 9.87")
But the value in the csv file appears like 1.25778E+12 for 123456545666644565554
How do I format it in vb.net. please help