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;}
Categories: Uncategorized
Gracias buena respuesta
LikeLike