您好我在以下代码中收到此错误,该代码在前面用2 *突出显示。任何人都可以帮忙吗?
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace ConsoleApplication5
{
class SStructure
{
**List<Property.Prop, List<Property.AddProp>> propset;**
public SStructure( List<Property.Prop, **List<Property.AddProp>> propset**)
{
this.propset = propset;
}
}
}
答案 0 :(得分:3)
泛型类List<T>
只有一个类型参数 - 您试图传递两个。