Reputation: 31
I`m developing an application which receives data from my GPS device like coordinates, speed etc via GPRS of the device to my linux OS server using IP and PORT no.
I want to know does .NET framework 4.0 applications will run on linux OS?
Upvotes: 1
Views: 2050
Reputation: 14312
Just to add (on top of the possible duplicate and related to 4.0)...
http://www.mono-project.com/Compatibility
The easiest way to describe what Mono currently supports is:
Everything in .NET 4.0 except WPF, EntityFramework and WF, limited WCF.
Upvotes: 0
Reputation: 6433
You can use mono to run C# applications on linux. I believe 3.5 is the latest framework that is supported however. You can check it out here: Mono Project
Upvotes: 2