What's the point of Mono on Windows - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T04:09:14Zhttp://stackoverflow.com/feeds/question/751648http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows15What's the point of Mono on WindowsAdam Haile2009-04-15T13:18:03Z2009-04-21T18:39:20Z
<p>This may be a dumb question...but I was just looking into the Mono project and they have a section about installing <a href="http://mono-project.com/Mono:Windows" rel="nofollow">Mono on Windows</a>. But, since Windows obviously already has the .NET runtime can anyone tell me what exactly is the point of having Mono for Windows? Does it help with cross platform development or something?</p>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/751649#75164924Answer by Kibbee for What's the point of Mono on WindowsKibbee2009-04-15T13:21:11Z2009-04-15T13:21:11Z<p>Because Mono Doesn't implement .Net 100% the same as the MS .Net Framework, it's good that you can test out on Mono without having to run on Linux. Also Mono has bindings to make forms with GTK which MS doesn't support.</p>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/751650#7516505Answer by Nick Berardi for What's the point of Mono on WindowsNick Berardi2009-04-15T13:21:17Z2009-04-15T13:21:17Z<p>It is mostly there as an aid to developing Mono apps for the Mono specific libraries. Also for helping to advance the cause, so that developers can work in their natural environment when developing for Mono. </p>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/751653#7516536Answer by Joachim Sauer for What's the point of Mono on WindowsJoachim Sauer2009-04-15T13:21:37Z2009-04-15T13:22:41Z<p>If you want to develop a cross-platform application in C#, then using Microsoft's implementation is not the smartest thing, as there is no fully compatible alternative for other platforms.</p>
<p>So using Mono on Windows to develop applications ensures that you'll have little trouble porting it to other OS (provided you avoid other pits such as P/Invoke).</p>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/751660#75166011Answer by Joel Coehoorn for What's the point of Mono on WindowsJoel Coehoorn2009-04-15T13:23:24Z2009-04-21T18:39:20Z<ul>
<li><p><code>Mono does some things the .Net doesn't.</code> For example, mono supports static linking so that you can build, compile, and distribute your app without requiring a separate run-time installer.</p></li>
<li><p><code>.Net does some things that mono doesn't.</code> So if you want an app that will also work on mac/linux you probably want to develop for mono first, even if you're doing the work on windows.</p></li>
</ul>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/751661#751661-5Answer by majkinetor for What's the point of Mono on Windowsmajkinetor2009-04-15T13:23:27Z2009-04-15T13:23:27Z<p><a href="http://www.gnu.org/software/dotgnu/danger.html" rel="nofollow">Keeping You from Getting Tangled in a Net!</a></p>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/751668#7516683Answer by Erv Walter for What's the point of Mono on WindowsErv Walter2009-04-15T13:24:21Z2009-04-15T13:24:21Z<p>While not of widespread interest, there are a few cases where mono has improvements over the standard Microsoft runtime. Migel gave a talk on some of these at PDC this year:</p>
<p>See these posts:</p>
<ul>
<li><a href="http://tirania.org/blog/archive/2008/Nov-02-1.html" rel="nofollow">Video of the presentation</a></li>
<li><a href="http://tirania.org/blog/archive/2008/Nov-03.html" rel="nofollow">SIMD support and gaming</a></li>
</ul>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/752102#7521024Answer by jpobst for What's the point of Mono on Windowsjpobst2009-04-15T14:57:08Z2009-04-15T14:57:08Z<p>Some people have used it because they are not allowed to install the .Net framework on their Windows PC's, due to the amount of registry and system files mucking it does. (In tightly controlled environments.)</p>
<p>Mono, on the other hand, is self contained in Program Files, and only writes a registry key with a path it in (which isn't necessary to run).</p>
<p>I think this is kinda silly, but it is something that multiple users have told us.</p>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/758392#75839213Answer by Jörg W Mittag for What's the point of Mono on WindowsJörg W Mittag2009-04-16T23:04:59Z2009-04-16T23:04:59Z<p>There are a couple of features Mono has that .NET doesn't.</p>
<p>Mono is highly modular. You can break it apart in tiny little pieces and only deploy <em>exactly</em> those parts that you need. Don't want System.Xml? Fine, it's gone.</p>
<p>Mono is embeddable. You can host it inside your C/C++ application, to allow users to script it from a safe managed sandboxed environment. The most famous example of this is mod_mono, which hosts Mono inside the Apache webserver, and is how ASP.NET is implemented in Mono, for example. This feature goes great together with the modularization mentioned above.</p>
<p>This has already been mentioned: static linking. <em>Also</em> goes great together with modularization.</p>
<p>Compiler as a Service is another one. Anders Hejlsberg has been talking about it for a <em>long</em> time, and <em>maybe</em>, just maybe it is going to be ready for C# 5.0. Well, Mono already has it, and actually had it for years.</p>
<p>Miguel de Icaza, Mono's Lead Developer also has an initiative that he calls "Embrace and Extend.NET", which extends the CLI in ways not (currently) possible with other CLI implementations (including .NET). So far, Embrace and Extend.NET has three features.</p>
<p>Mono.Simd, which gives safe and controlled access to the SIMD instructions of the underlying CPU (e.g. SSE on Intel or AltiVec on PowerPC). Used for Games and Graphics.</p>
<p>64 Bit array indices, which are allowed by the ECMA specification, but Mono is the only VM that actually provides them. Used in supercomputing.</p>
<p>And most recently, continuations. This is actually the first time that Mono strays outside the realm of the specification: long array indices are perfectly valid as per the spec, and Mono.Simd also works on every CLI compliant implementation (albeit <em>very</em> S-L-O-W), but Mono.Tasklet needs special support from the VM that is not part of either CLI or .NET. This is used for game logic and e.g. in Second Life.</p>
http://stackoverflow.com/questions/751648/whats-the-point-of-mono-on-windows/758405#7584051Answer by Zifre for What's the point of Mono on WindowsZifre2009-04-16T23:08:55Z2009-04-16T23:08:55Z<p>I think the main reason they did this is so they can run .NET applications on Mono and .NET side-by-side to compare them. Also, there are a few applications that depend on Mono libraries.</p>