复制代码 代码如下:
using System;
namespace Model
{
/// <summary>
/// typeFiles 的摘要说明。
/// </summary>
public class typeFiles
{
private object _Fkey;
private object _Fvalue1;
private object _Fvalue2;
public object Fkey
{
get
{
return _Fkey;
}
set
{
_Fkey = value;
}
}
public object Fvalue1
{
get
{
return _Fvalue1;
}
set
{
_Fvalue1 = value;
}
}
public object Fvalue2
{
get
{
return _Fvalue2;
}
set
{
_Fvalue2 = value;
}
}
}
}
复制代码 代码如下:
using System;
using System.Collections;
namespace Command
{
/// <summary>
/// WEHash 的摘要说明。
/// </summary>
public class WEHash
{
private ArrayList alist = new ArrayList();
public WEHash()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public void Add(object key,object value,object valType)
{
Model.typeFiles cmt=new Model.typeFiles();
cmt.Fkey = key;
cmt.Fvalue1 = value;
cmt.Fvalue2 = valType;
alist.Add (cmt);
}
public ArrayList HashItems
{
get
{
return alist;
}
set
{
alist = value;
}
}
public bool hasContaint(object key)
{
foreach(object itm in alist)
{
Model.typeFiles cmt = (Model.typeFiles)itm;
if (cmt.Fkey.ToString() == key.ToString())
return true;
}
return false;
}
}
}
新闻热点
疑难解答
图片精选