0

好吧,我的问题很简单。

我想将属性添加到预定义的类。

Imports Lidgren.Network

Module Socket
    Public Clients As List(Of NetConnection) = New List(Of NetConnection)

需要添加“index”属性,使其为“Clients(sender).Index”

4

1 回答 1

1

您使用 aList(Of T)所以您可以访问它的IndexOf 方法- 它返回集合中从零开始的位置。

Dim i As Integer = Clients.IndexOf(sender)
于 2014-11-15T16:35:06.633 回答