Here is our C# code to generate CSV file. 1: StringBuilder sb = new StringBuilder(); 2:string strDelimiter = ","; 3: 4:foreach (DataRow dr in table.Rows) 5: { 6:string[] arr = Array.ConvertAll(dr.ItemArray, new Converter
|
5
Shouts |
|
|||
No comments yet, be the first one to post comment.