-2
出於某種原因,Visual Studio除了Item屬性(它不會出現在自動完成框中)之外,具有ArrayList的所有屬性和方法。無論如何,它無法編譯。未找到ArrayList.Item屬性。使用NET Framework 4.0和Visual Studio 2010
出於某種原因,Visual Studio除了Item屬性(它不會出現在自動完成框中)之外,具有ArrayList的所有屬性和方法。無論如何,它無法編譯。未找到ArrayList.Item屬性。使用NET Framework 4.0和Visual Studio 2010
C#中的Item
屬性可通過方括號運算符訪問。例如,如果文檔爲List<T>
says that a class exposes property Item
that takes an int
and returns a T
。你可以這樣使用它:
var res = myList[123];