我有以下奇怪的错误;在空的 Catch 块上抛出异常!
任何想法如何实现以及如何解决?
谢谢!
它尝试并失败了,但是在 catch 中没有任何东西可以处理它,因此出现了 error NullReferenceException was unhandled
。
好吧,我想我明白了……
For Each mediaPlayerID In _attachedDevices.Values.GroupBy(Function(t)t.MediaPlayerInfo.ID).Distinct()
Try
fileSystemPerMediaPlayerId.Add(mediaPlayerID.Key, New FileSystemOnDevice())
Catch
End Try
Next
问题是由 GroupBy 方法内的 lambda 表达式中的空变量引起的...
编译器只是指向错误的行..