Answers for "table to array c#"

C#
3

C# list to array

string[] array = list.ToArray();
Posted by: Guest on March-05-2021
0

datatable to array c#

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

C# Answers by Framework

Browse Popular Code Answers by Language