'类型'用作变量(c#)

时间:2015-03-30 11:26:20

标签: c# wpf list compiler-errors

我遇到了以下编译器错误,我不知道该怎么做:

  

System.Windows.Document.List是'Type'总线,就像'变量'一样

这是消息来自的代码:

public blabla this[int index]
{
    get {return (blabla)List(Index);}
    set {List(Index) = value;}
}

我在VB中编写了这段代码,并且我试图让它在c#中工作,任何想法如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

在C#中访问Collection特定项是这样的:

List[Index]
VB中的

List(Index)

检查here on MSDN