您的位置:首页 > 编程语言 > C#

c##region #endregion折叠代码

2015-09-10 10:52 429 查看
#region 折叠代码 此处可以加注释

/*

//Hashtable ht = new Hashtable();

Dictionary<string, string> ht = new Dictionary<string, string>();

ht.Add("a", "a1");

ht.Add("b", "b1");

ht.Add("c", "c1");

// 遍历HashTable

//ArrayList akey = new ArrayList(ht.Keys);

//foreach (string key in akey)

foreach (string key in ht.Keys)

{

Console.WriteLine("{0},{1}", key, ht[key]);

}

//foreach (DictionaryEntry de in ht) {

// Console.WriteLine("{0},{1}", de.Key, de.Value);

//}

IDictionaryEnumerator en = ht.GetEnumerator();

while (en.MoveNext()) {

string strKey = en.Key.ToString();

Console.WriteLine(strKey);

string strValue = en.Value.ToString();

Console.WriteLine(strValue);

}

foreach (var obj in ht) {

Console.WriteLine("{0},{1}", obj.Key, obj.Value);

}

Console.ReadKey();

*/

#endregion
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: