Home > Uncategorized > Converting a DataTable to a Hashtable

Converting a DataTable to a Hashtable

This is a handly little C# function to convert a DataTable to a HashTable
(Give credit to this website if you use it!)
 

private Hashtable convertDataTableToHashTable(DataTable dtIn,string keyField,string valueField)

{

Hashtable htOut = new Hashtable();

foreach(DataRow drIn in dtIn.Rows)

{

htOut.Add(drIn[keyField].ToString(),drIn[valueField].ToString());

}

return htOut;

}

 
Advertisement
Categories: Uncategorized
  1. victor
    October 17, 2017 at 4:34 am

    Gracias buena respuesta

    Like

  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: