地区代码表(利用Hashtable实现)
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Collections;/** * 功能:通过两位地区码得到对应的地区简称、全称 **/namespace GetIDCardInfoDemo{ class DistrictCodeTable { /// /// 地区代码表(默认为空,需初始化:简称、全称) /// public Hashtable m_DistrictTB = new Hashtable(); ... 阅读全文
posted @ 2013-11-28 15:02 ExDevilLee 阅读(697) 评论(0) 推荐(0) 编辑