meine Sys/Db admin & Developper Notitzen - wer Rechtschreibfehler findet darf sie behalten ...
my Sys/Db Admin and developper notes - I don't care about typos
Thursday, July 14, 2011
NameValueCollection in Dictionary konvertieren
static public Dictionary NamValCol2Dict(NameValueCollection nvc) { Dictionary temp = new Dictionary(); foreach (string key in nvc) { temp.Add(key, nvc[key]); } return temp; }
No comments:
Post a Comment