是否可以使用[]运算符创建静态类?
在非静态类中,语法非常简单:
public V this[K key]
{
get
{
//get stuff...
}
set
{
//set stuff....
}
}
但是,我无法在静态对象上找到解决方法。