0

我有以下奇怪的错误;在空的 Catch 块上抛出异常!

任何想法如何实现以及如何解决?

谢谢!

废话

4

2 回答 2

2

它尝试并失败了,但是在 catch 中没有任何东西可以处理它,因此出现了 error NullReferenceException was unhandled

于 2012-08-05T06:36:06.310 回答
1

好吧,我想我明白了……

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 表达式中的空变量引起的...
编译器只是指向错误的行..

于 2012-08-05T07:42:49.967 回答