我想做一些類似於listbox.children屬性。我知道我可以這樣寫返回列表框的孩子:功能屬性
Public ReadOnly Property Children(index as integer)
Get
'Return the children at the specified index
End Get
End Property
但我怎麼能做出Children屬性的功能是什麼?例如,List.Children.Count將返回列表條目的計數,但List.Children(0)將返回第一個條目。
將'Option Strict On'放在源代碼文件的頂部。您必須進行的更改才能使此代碼進行編譯,這有助於您找到正確的答案。 –