Dictionary字典类使用范例
Posted 杰的记事本——javascript.shop
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dictionary字典类使用范例相关的知识,希望对你有一定的参考价值。
原文发布时间为:2009-11-04 —— 来源于本人的百度文章 [由搬家工具导入]
using System;
using System.Web.UI.WebControls;
using System.Collections.Generic;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Content content = new Content();
Response.Write(content.Fruit(2));
Response.Write("<br/>");
Response.Write(content.Fruit(4));
}
}
public class Content
{
private Dictionary<int, string> fruit = new Dictionary<int, string>();
public Content()
{
this.fruit.Add(1, "香蕉");
this.fruit.Add(2, "苹果");
}
public string Fruit(int key)
{
if (fruit.ContainsKey(key))
{
return fruit[key];
}
else
{
return "未知水果";
}
}
}
以上是关于Dictionary字典类使用范例的主要内容,如果未能解决你的问题,请参考以下文章