Dot Net Framework for Linux Platform?
-
I am new to Linux platform, i want to know that, From where i can get Dot Net Framework for Linux platform ? and how i can run my dot net programs on to the Linux platform ? please guide me.
First of all .Net framework in its complete form is only targetted for Microsoft Platform. But there is something call Mono which can be used to target the Linux, Solaris etc Platforms. This [^]Google Search should help you.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
I am new to Linux platform, i want to know that, From where i can get Dot Net Framework for Linux platform ? and how i can run my dot net programs on to the Linux platform ? please guide me.
And no, Mono is NOT a complete implementation of Microsoft's .NET Framework. You will not be able to just write and compile on a Windows platform and expect your app to completely work by copying the .EXE to Linux and launching it.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
And no, Mono is NOT a complete implementation of Microsoft's .NET Framework. You will not be able to just write and compile on a Windows platform and expect your app to completely work by copying the .EXE to Linux and launching it.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008Dave Kreskowiak wrote:
Mono is NOT a complete implementation of Microsoft's .NET Framework.
Which is why I don't use it.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
I am new to Linux platform, i want to know that, From where i can get Dot Net Framework for Linux platform ? and how i can run my dot net programs on to the Linux platform ? please guide me.
There is Mono, but it is not a complete set of .NET. You cannot really do true .NET development and run it on Linux. If you want to do real Linux development, you should really be aiming towards C++ and try QT, Trolltech's development environment or Eclipse.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
I am new to Linux platform, i want to know that, From where i can get Dot Net Framework for Linux platform ? and how i can run my dot net programs on to the Linux platform ? please guide me.
You can't write a program for Windows and expect it to run on Linux. If you want it to run on Linux, use Mono. If you want it to run on Windows, use .Net. The chances of a Mono program running on Windows (with the necessary runtimes installed) are better than a Windows program running on Linux.