2013-12-23 66 views
2

我在Visual Studio 2008中,請運行該程序時,將顯示此錯誤:「試圖加載程序格式不正確」

$異常{「無法加載文件或程序集」 AForge.Video.FFMPEG, 版本= 2.2.5.0,文化=中性公鑰= 03563089b1be05dd」或它的一個依賴。試圖加載程序使用不正確的格式。「}

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 
using AForge.Video.FFMPEG; 

namespace WindowsFormsApplication9 
{ 
    public partial class Form1 : Form 
    {   
     public Form1() 
     { 
      InitializeComponent(); 
     } 

     private void button1_Click(object sender, EventArgs e) 
     { 
      VideoFileReader video = new VideoFileReader(); 
     } 
    } 
} 

我的程序有什麼問題?

回答

2

通常這是嘗試在x64系統上加載x86二進制文件(反之亦然)的後果。檢查您的程序是否正在編譯爲與您正在使用的二進制文件相同的目標(在本例中爲AForge.Video.FFMPEG)。

相關問題