If you need to put the content of a list of List<string> in a textbox here is a simple way to do it.
c#, .net, asp.net, source code, info,
c#, .net, asp.net, source code, info,
foreach(KeyValuePair<string, string> entry in myDictionary)
{
// you can use here entry.Value
// or entry.Key
}
Comments
Post a Comment