I have an myArray that contains like below
{[Acquisition Type, AcquisitionType]}
{[Address 1, VendorsAddress1]}
{[Address 2, VendorsAddress2]}
{[Contact Email, VendorsContactEmail]}
how do I loop in myArray and retrieve the Bold ones and fill in SelectedFields as string separated by coma
SelectedFields =Acquisition Type,Address1,Address 2,Contact Email
this is what i am trying to do
SortedDictionary<string, string> columns = GetColumns(dtReports.Rows[0]["DataSource"].ToString());
string[] keys = columns.Keys.ToArray();
string allarray=& ...
Go to the complete details ...