What myths have you heard about regarding the .NET Framework? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:50:09Zhttp://stackoverflow.com/feeds/question/173591http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework7What myths have you heard about regarding the .NET Framework?Anheledir2008-10-06T08:41:25Z2008-10-06T18:11:00Z
<p>There are several "myths" about the .NET Framework - some are true, some aren't. I don't want do debate about those myth and what arguments there are to prove their right/wrong-status. I'm just curious about what myths you hear about the .NET Framework...</p>
<p>(e.g.: <em>".NET Software is nearly Opensource because everyone can read the IL-Code with a tool like Reflector</em>" or "<em>Managed languages like C# are always slower than unmanaged languages like C++</em>")</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173598#173598-1Answer by Terminus for What myths have you heard about regarding the .NET Framework?Terminus2008-10-06T08:43:49Z2008-10-06T08:43:49Z<p>Myth: Memory allocation is faster in managed code than in native code.</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173603#1736037Answer by David Arno for What myths have you heard about regarding the .NET Framework?David Arno2008-10-06T08:44:55Z2008-10-06T09:45:09Z<p>".NET is only available for Windows"</p>
<p>This is a completely untrue myth, for the open source version of .NET - <a href="http://www.theregister.co.uk/2008/10/06/mono_two/" rel="nofollow">mono</a> - is available for many OS's.</p>
<p>Edit: Marc Gravell has pointed out another good point surrounding this myth: Silverlight. Micrososft are actively supporting the development of a small-scale CLR/ .NET framework that is truly cross-platform with Moonlight, and have themselves created a OS X version of Silverlight.</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173604#1736044Answer by Sergio Acosta for What myths have you heard about regarding the .NET Framework?Sergio Acosta2008-10-06T08:45:47Z2008-10-06T08:45:47Z<p>Myth: When you discover a memory leak in your managed application, the reason is that <strong>the garbage collector is not working right</strong>.</p>
<p>In most cases it is the program not releasing references to useless objects.</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173614#1736141Answer by Galwegian for What myths have you heard about regarding the .NET Framework?Galwegian2008-10-06T08:54:59Z2008-10-06T08:54:59Z<p>Myth: ASP.NET is slow</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173628#1736286Answer by alexmac for What myths have you heard about regarding the .NET Framework?alexmac2008-10-06T09:04:37Z2008-10-06T09:04:37Z<p>.net solves dll hell (well ok maybe but as anyone who has worked on a large scale project will tell you it introduces some annoying reference issues)</p>
<p>Also as its managed code you dont have to bother closing connections and destroying objects</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173633#1736330Answer by mirnazim for What myths have you heard about regarding the .NET Framework?mirnazim2008-10-06T09:09:35Z2008-10-06T09:09:35Z<p>@David Arno</p>
<p>That is wrong information. </p>
<p>Microsoft .Net IS NOT available for anything other than windows. Which renders its claim of platform independence into the dust.</p>
<p>While Mono shares a common thread of philosophy/paradigm with MS .Net framework, it being cross platform has nothing to do with MS. In my understanding Mono is a completely separate project.</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173653#173653-5Answer by mirnazim for What myths have you heard about regarding the .NET Framework?mirnazim2008-10-06T09:17:43Z2008-10-06T09:17:43Z<p>I however understand and accept that .Net is the best and preferred way to develop apps if you are 120% sure that those apps will not be required to run on a platform other than MS.</p>
<p>If not then you are left with Mono as your option(assuming that you need to develop in a .Net like environment)</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173661#173661-10Answer by Agnel Kurian for What myths have you heard about regarding the .NET Framework?Agnel Kurian2008-10-06T09:21:41Z2008-10-06T09:21:41Z<p>".NET rocks!"</p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173672#1736721Answer by leppie for What myths have you heard about regarding the .NET Framework?leppie2008-10-06T09:26:36Z2008-10-06T09:26:36Z<p>.NET is slower than native code. </p>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173691#1736917Answer by Marc Gravell for What myths have you heard about regarding the .NET Framework?Marc Gravell2008-10-06T09:33:47Z2008-10-06T09:33:47Z<p>Perhaps a bit too specific to the internals, but here are some common myths:</p>
<ul>
<li>structs always live on the stack (counter: class fields, boxed values)</li>
<li>struct variables always live on the stack (counter: captured variables)</li>
<li>string is a value type (honestly, I still see this regularly)</li>
<li>public fields are faster than properties (almost always inlined)</li>
<li>the whole "pass by reference/value" vs "reference-type/value-type" confusion - probably more a <em>cause</em> of myth(s) than a myth itself</li>
<li>that you don't have to worry about memory usage any more... (GC is good, but it can't make 4TB available to your XP machine, and it won't collect things you still have hooks into)</li>
</ul>
http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework/173725#1737255Answer by JohnIdol for What myths have you heard about regarding the .NET Framework?JohnIdol2008-10-06T09:51:28Z2008-10-06T10:11:11Z<p>According to Microsoft, Generics are faster than casting (even in absence of boxing/unboxing).</p>
<p>Tony Northrup - co-author of MCTS 70-536: Application Development Foundation - states in the same book the following:</p>
<blockquote>
<p>I haven’t been able to reproduce the
performance benefits of generics;
however, according to Microsoft,
generics are faster than using
casting. In practice, casting proved
to be several times faster than using
a generic. However, you probably won’t
notice performance differences in your
applications. (My tests over 100,000
iterations took only a few seconds.)
So you should still use generics
because they are type-safe.</p>
</blockquote>
<p>Please note the argument is not about primitives. Microsoft states that Generics provide better performance than casting between reference types as well - but they do not. I tried that and using generics is slower than casting in this case (confirming Tony Northrup quote).</p>