4

我刚刚尝试运行 NAudio 演示,但遇到了一个奇怪的错误:

System.BadImageFormatException: Could not load file or a
ssembly 'NAudio, Version=1.3.8.0, Culture=neutral, PublicKeyToken=null' or one o
f its dependencies. An attempt was made to load a program with an incorrect form
at.
File name: 'NAudio, Version=1.3.8.0, Culture=neutral, PublicKeyToken=null'
   at NAudioWpfDemo.AudioGraph..ctor()
   at NAudioWpfDemo.ControlPanelViewModel..ctor(IWaveFormRenderer waveFormRender
er, SpectrumAnalyser analyzer) in C:\Users\Admin\Downloads\NAudio-1.3\NAudio-1-3
\Source Code\NAudioWpfDemo\ControlPanelViewModel.cs:line 23
   at NAudioWpfDemo.MainWindow..ctor() in C:\Users\Admin\Downloads\NAudio-1.3\NA
udio-1-3\Source Code\NAudioWpfDemo\MainWindow.xaml.cs:line 15

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\M
icrosoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure lo
gging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fus
ion!EnableLog].

自从我上次使用 NAudio 演示以来,我已经从 32 位 Windows XP 更改为 64 位 Windows 7。这会导致这个问题吗?这很烦人,因为我正要再次尝试 C# 中的音频

4

2 回答 2

7

我没有使用 NAudio 的经验,但是您最常提到的异常通常发生在存在位数问题时。这意味着 NAudio 可能仅编译为 32 位,而您运行 64 位。

要尝试解决此问题,请在项目的编译属性中,将输出设置为 32 位 (x86)。

于 2010-05-09T20:36:37.443 回答
3

您的程序正在尝试将 32 位 DLL 加载到 64 位进程中(反之亦然)。在 Windows 上,32 位程序只能加载 32 位 DLL,而 64 位程序只能加载 64 位 DLL。

您的程序可能以 AnyCPU 作为平台,因此编译器会发出 IL,在运行时,它会根据您的平台变成 32 位或 64 位进程。您正在使用的 DLL (NAudio) 可能仅针对 x86 平台构建。

在您的项目属性中,尝试强制平台为 x86。

于 2010-05-09T20:37:30.390 回答