C# to VB: Class.Event += (sender, args) => FunctionName(params)

前端 未结 3 955
无人及你
无人及你 2021-01-21 11:08

I\'m trying to convert the C# code from this webpage to VB.

Everything seems to have converted pretty much fine using an online converter tool, but then I reach the foll

3条回答
  •  耶瑟儿~
    2021-01-21 11:47

    This is a lambda expression. Let me see how to do this in VB...

    AddHandler fadeOutAnimation.Completed, Sub(sender, e) _
    (OnFadeOutAnimationCompleted(d, hostGrid, grid))
    

提交回复
热议问题