我正在尝试在Ubuntu上运行c#。因此,我从软件中心下载了monoDevelop
,版本为3.0.4.3
。
我认为问题在于c#类库版本,但我不知道在哪里看到它或应用更新的版本以便我可以在{{1}中使用elementAt
方法} Class。
由于
答案 0 :(得分:0)
在文档中,您可以使用一个索引器:http://docs.go-mono.com/?link=P%3aSystem.Collections.Generic.List%3cT%3e.Item
修改强>
您使用索引器就像检索/设置数组元素一样:
var list = new List<string>();
list.Add("hello !");
var s = list[0];