错误 - 使用泛型类型'System.Collection.Generic.List <t>需要'1'类型参数</t>

时间:2011-08-24 03:08:52

标签: c#

您好我在以下代码中收到此错误,该代码在前面用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;

    }


}

}

1 个答案:

答案 0 :(得分:3)

泛型类List<T>只有一个类型参数 - 您试图传递两个。