I have a Winform application in C # (which works fine on Windows), but it crashes in Mono on the Raspberry Pi due to the following error.
* Approval in the mini codec. c: 807, the condition 'i == sel' does not occur. Got SIGABRT while executing native code. This usually indicates a fatal error in the mono executable version or one of the built-in libraries used by your application.
After some research, I found out that the Mono version on Pi does not support Winform Textbox and therefore the above error. I have a Mono JIT compiler version 3.2.8 (Debian 3.2.8 + dfsg-4 + rpi1) installed on a Pi. It seems that a later version of Mono fixed this error (3.8.1).
Can someone explain how to upgrade Mono to the latest or required version. Linux is installed on the Pi. I tried the following commands (sudo apt-get update && sudo apt-get dist-upgrade.), But the version on the Pi is still displayed as 3.2.8.
-Thank
gacha source
share