对于 C# 代码
public Action Task { get; set; }
this.Task();
但在 VB 中:
Public Property Task() As Action
Get
Return m_Task
End Get
Set(value As Action)
m_Task = Value
End Set
End Property
Me.Task()
不管用。如何解决这个问题?