Answers for "how to convert datarow array to datatable in c#"

C#
0

datatable to array c#

string[] arrray = dt.Rows.OfType<DataRow>().Select(k => k[0].ToString()).ToArray();
Posted by: Guest on October-22-2021

Code answers related to "how to convert datarow array to datatable in c#"

C# Answers by Framework

Browse Popular Code Answers by Language