111,094
社区成员




public class InstanceState
{
private SortedList<string,object> atributes =new SortedList<string,object>();
///索引器,可以重载
public object this[string name]
{
get {
return atributes[name];
}
set {
attributes[name] = value;
}
}
}
}