首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

没可访问的“Sum”接受此数目的类型实参

2013-03-01 
没有可访问的“Sum”接受此数目的类型实参Private m_skus As System.Collections.Generic.Dictionary(Of Str

没有可访问的“Sum”接受此数目的类型实参


   Private m_skus As System.Collections.Generic.Dictionary(Of String, SKUItem)
 Public ReadOnly Property Stock() As Integer
            Get
                Return Me.m_skus.Values.Sum(Of SKUItem)(Function(sku As SKUItem) sku.Stock)
            End Get
End Property

提示错误:

没有可访问的“Sum”接受此数目的类型实参,因此重载决策失败。
Dictionary
[解决办法]
  Private m_skus As System.Collections.Generic.Dictionary(Of String, SKUItem)
    Public ReadOnly Property Stock() As Integer
        Get
            Return Me.m_skus.Values.Sum((Function(sku As SKUItem) sku.Stock))
        End Get
    End Property

热点排行