我有这段代码
Dim _timer As System.Threading.Timer
Public Sub RunTimer2()
_timer = New System.Threading.Timer(onSave(),
Nothing,
TimeSpan.FromSeconds(5),
TimeSpan.FromSeconds(5))
End Sub
我得到错误重载解析失败,因为没有可访问的“新”接受这个数量的参数。对于我试图创建计时器的行。尽管我可以在 msdn 和库中的文档中看到它具有我使用的这 4 种可能的类型参数。我不明白...