C#转换集合类型为html源码输出

2021-06-20 04:04

阅读:360

标签:obj   tor   cti   table   enum   资料   代码   get   hashtable   

把代码过程中经常用的内容做个珍藏,如下资料是关于C#转换集合类型为html输出的代码。
public static string ToHTML(Hashtable hashtable) {
string tmp = "";
IDictionaryEnumerator myEnumerator = hashtable.GetEnumerator();
while ( myEnumerator.MoveNext() ) {
tmp += "
" + myEnumerator.Key+", "+ myEnumerator.Value;
}
return tmp;
}
public static string ToHTML(ArrayList arrayList) {
foreach ( Object o in arrayList ) {
tmp.Append("
" + o);
}
return tmp.ToString();
}

C#转换集合类型为html源码输出

标签:obj   tor   cti   table   enum   资料   代码   get   hashtable   

原文地址:http://blog.51cto.com/14152780/2342463


评论


亲,登录后才可以留言!