• c#遍历HashTable


    C# 代码
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Collections;
    namespace GetSpec
    ...{
    class HashTableDemo
    ...{

    public string Get()
    ...{
    Hashtable hashTable
    = new Hashtable();
    hashTable.Add(
    1, "wuyi");
    hashTable.Add(
    2, "sky");
    System.Windows.Forms.MessageBox.Show((
    string)hashTable[1]);

    foreach (DictionaryEntry de in hashTable)
    ...{
    System.Windows.Forms.MessageBox.Show(de.Key.ToString());
    System.Windows.Forms.MessageBox.Show(de.Value.ToString());
    }


    System.Collections.IDictionaryEnumerator enumerator
    = hashTable.GetEnumerator();
    while (enumerator.MoveNext())
    ...{
    System.Windows.Forms.MessageBox.Show(enumerator.Key.ToString());
    System.Windows.Forms.MessageBox.Show( enumerator.Value.ToString());
    }


    return (string)hashTable[1];
    }

    }

    }

  • 相关阅读:
    redhat 5 中文乱码
    生成树
    交换机端口模式
    链路聚合
    AP注册
    信息收集
    Python 25 Django跨域请求
    Python 24 Django之csrf中间件
    Python 23 Django基础
    Python 21 Flask(三)第三方组件
  • 原文地址:https://www.cnblogs.com/leeolevis/p/1383135.html
Copyright © 2020-2023  润新知