2

虽然我csc /t:library strconcat.cs得到using System.Collections.Generic;一个错误

strconcat.cs(9,17): error CS0305: Using the generic type
        'System.Collections.Generic.List<T>' requires '1' type arguments
mscorlib.dll: (Location of symbol related to previous error)  

.cs 代码取自这里:使用公共语言运行时。
我检查了 msdn 上的描述,但现在无法编译

using System;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.IO;
using Microsoft.SqlServer.Server;
[Serializable]
[SqlUserDefinedAggregate(Format.UserDefined,  MaxByteSize=8000)]
public struct strconcat : IBinarySerialize{
        private List values;
        public void Init()    {
            this.values = new List();
        }
        public void Accumulate(SqlString value)    {
            this.values.Add(value.Value);
        }
        public void Merge(strconcat value)    {
            this.values.AddRange(value.values.ToArray());
        }
        public SqlString Terminate()    {
            return new SqlString(string.Join(", ", this.values.ToArray()));
        }
        public void Read(BinaryReader r)    {
            int itemCount = r.ReadInt32();
            this.values = new List(itemCount);
            for (int i = 0; i <= itemCount - 1; i++)    {
                this.values.Add(r.ReadString());
            }
        }
        public void Write(BinaryWriter w)    {
            w.Write(this.values.Count);
            foreach (string s in this.values)      {
                w.Write(s);
            }
        }
}

我正在运行 Windows 7 x64c:\Windows\Microsoft.NET\Framework\v2.0.50727以及c:\Windows\Microsoft.NET\Framework64\v2.0.50727>
如何编译?抱歉,我只是从 c# 开始-我在 SO 上搜索了其他一些问题,这些建议对我没有任何进展(

4

3 回答 3

1

与CS0305对应的文章中解释了错误- 类型参数的数量不匹配。

在您的情况下,您需要new List()使用零类型参数进行调用,例如:new List<string>()和相应的字段定义private List<string> values;

注意:如果您出于某种奇怪的原因想要非泛型版本,则对应的类名为ArrayList,但泛型List<T>使用起来更容易、更安全。

于 2013-03-06T08:29:44.990 回答
1

问题如前所述,您尚未指定要存储在列表中的类型。将此部分更改如下

private List<string> values;

public void Init()
{
    this.values = new List<string>();
}

C# 中的泛型类型需要指定它们使用的类型来代替<T>.

于 2013-03-06T08:30:27.730 回答
0

System.Collections.Generic.List 需要一个类型参数,在这种情况下它似乎是 SqlString,因此将代码的以下部分更改如下:

        private List<SqlString> values;

        public void Init()    {
            this.values = new List<SqlString>();
        }
于 2013-03-06T08:30:35.797 回答