Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
myReader =new SqlDataReader();
string sep = ";"
Array myTargetArray=Array.CreateInstance( typeof(String), myReader.FieldCount );
for (int i=0;i<myReader.FiledCount;i++)
myTargetArray.Add(myReader[i],i);
string sCommasep = String.Join(sep, myTargetArray);