Visual Studio输出窗口中的消息源

问题描述 投票:6回答:1

假设我的输出窗口中有一条消息(显示Debug的输出)

抛出异常:mscorlib.dll中的“System.InvalidOperationException”

我的应用程序不会抛出异常,只显示该消息并继续。当我在导入的DLL中调用方法时发生异常,这是一个C ++模块(我的应用程序是C#)。尽管出现此消息,该方法仍然可以正常运行。

我的猜测是该模块正在处理异常,然后显示该消息,但我想确定是这种情况,并且我没有做任何事情来导入它或编组数据(或自定义编组)。

(我的代码:

[DllImport("theExternalModule.dll", EntryPoint = "ReadData", SetLastError = true)]
[return: MarshalAs(UnmanagedType.U4)]
private static extern UInt32 ReadData([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(JaggedArrayMarshaler))] Int16[][] data,
                                      [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(JaggedArrayMarshaler))] Int16[][] dataOrig,
                                      [MarshalAs(UnmanagedType.U2)] Int16 buffsize,
                                      ref int smpNum);

resultCode = ReadData(_buffer, _origBuffer, bufferSize, ref sampleNumber);

(当我在调试器中单步执行此行时,将显示该消息)

我的问题是,有没有办法让输出窗口告诉我哪个模块或方法导致显示该消息?

c# c++ visual-studio debugging visual-studio-2017
1个回答
0
投票

在创建枚举数后更改集合时,通常会发生此问题。您的原始问题没有足够的代码来断言,但您可以阅读有关此问题的herehere

这是一个例子(取自其中一篇文章),会引发异常:

List<Book> books = new List<Book>();
books.Add(new Book("The Stand", "Stephen King"));
books.Add(new Book("Moby Dick", "Herman Melville"));
books.Add(new Book("Fahrenheit 451", "Ray Bradbury"));
books.Add(new Book("A Game of Thrones", "George R.R. Martin"));
books.Add(new Book("The Name of the Wind", "Patrick Rothfuss"));

Book newBook = new Book("Robinson Crusoe", "Daniel Defoe");
foreach (var book in books)
{
  if (!books.Contains(newBook))
  {
    books.Add(newBook);  // Throws a InvalidOperationException in mscorlib.dll
  }
}

你可能还想看看the InvalidOperation class on MSDN的进一步原因。

© www.soinside.com 2019 - 2024. All rights reserved.