Raspberry pi 如何在RPi上运行此.exe文件

Raspberry pi 如何在RPi上运行此.exe文件,raspberry-pi,Raspberry Pi,您好,我目前在尝试使用mono在raspberry pi中运行.exe文件时遇到问题。.exe文件使用一个名为supersimpletcp的库,我从visual Studio下载了该库。成功运行应用程序后,我将.exe文件从我的计算机传输到在Raspbian上运行的raspberry pi,当我尝试运行它时,它会显示这一点 Unhandled Exception: System.TypeLoadException: Could not load type of field 'LastTCPWi

您好,我目前在尝试使用mono在raspberry pi中运行.exe文件时遇到问题。.exe文件使用一个名为
supersimpletcp
的库,我从visual Studio下载了该库。成功运行应用程序后,我将.exe文件从我的计算机传输到在Raspbian上运行的raspberry pi,当我尝试运行它时,它会显示这一点

Unhandled Exception:
System.TypeLoadException: Could not load type of field 
'LastTCPWinform.Form1:client' (0) due to: Could not load file or assembly 
'SimpleTcp, Version=2.3.0.2, Culture=neutral, PublicKeyToken=null' or one of 
its dependencies.
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeLoadException: Could not load 
type of field 'LastTCPWinform.Form1:client' (0) due to: Could not load file 
or assembly 'SimpleTcp, Version=2.3.0.2, Culture=neutral, 
PublicKeyToken=null' or one of its dependencies.

任何帮助都将不胜感激。

我猜您的计算机运行在Intel或AMD处理器上,您希望在ARM处理器上运行的Raspberry Pi卡上运行这些处理器的可执行文件?@RachidK。这似乎是您需要使用生成ARM代码的编译器进行编译的情况。您可以在Raspberry Pi上安装一个编译器并在其上编译,也可以在主机PC上安装一个交叉编译器。Raspberry的网站提供了制作说明。@RachidK。这似乎是一个.NET可执行文件,所以可以在ARM上运行。SimultCp库也是C语言库还是C++或管理C++?我认为BOX86-是你需要的。