我收到有关这段代码的编译错误:
错误 1 类、结构或接口成员声明中的标记 '(' 无效
错误 2 不能在 for、using、fixed 或声明中使用多个类型
知道为什么吗?另外,是否可以如下声明字典?
public class S
{
private class ObInfo<T>
{
private string _type;
private T _value;
public ObInfo<T>(string i_Type, T Value)
{
this._type = i_Type;
this._value = Value;
}
public ObInfo()
{}
}
private static Dictionary<int,ObInfo> sObj= new Dictionary<int,ObInfo>();
}