Why List(Of T) doesn't have Count()?

前端 未结 4 2140
北荒
北荒 2021-02-15 22:11
Public Class MyList
    Inherits List(Of MyObject)

    Public ReadOnly Property SelectedCount() As Integer
        Get
            Return Me.Count(Function(obj) obj.IsS         


        
4条回答
  •  猫巷女王i
    2021-02-15 22:48

    Call the method without the extension method syntax:

    Public Class MyList
        Inherits List(Of MyObject)
    
        Public ReadOnly Property SelectedCount() As Integer
            Get
                Return Enumerable.Count(Me, Function(obj) obj.IsSelected)
            End Get
        End Property
    End Class
    

    Make sure you have added an import to System.Linq.

提交回复
热议问题