vote up 7 vote down star
4

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...

(e.g.: ".NET Software is nearly Opensource because everyone can read the IL-Code with a tool like Reflector" or "Managed languages like C# are always slower than unmanaged languages like C++")

flag

I'm thinking about closing this question if it deteriorates to more bickering. – Jon Limjap Oct 6 '08 at 9:32
Read this thread and tell me it's not subjective and argumentative. – Blorgbeard Oct 6 '08 at 9:35
Will reopen this and remove the PS which is definitively subjective and argumentative (and it doesn't add to the question). For the rest it's a valid question, and it's being upvoted. – Sklivvz Oct 6 '08 at 9:40
Leave it open and let the voting do its work. It seems there's a couple of trolls here who clearly have a bee in their bonnet about MS. It's a valid question and isn't a .NET vs PHP type question which is definitely flamewar material. – Kev Oct 6 '08 at 9:42
David Arno, I will remove all comments which are flame bait or insulting and do not add to the question. – Sklivvz Oct 6 '08 at 9:45
show 2 more comments

11 Answers

vote up 7 vote down check

Perhaps a bit too specific to the internals, but here are some common myths:

  • structs always live on the stack (counter: class fields, boxed values)
  • struct variables always live on the stack (counter: captured variables)
  • string is a value type (honestly, I still see this regularly)
  • public fields are faster than properties (almost always inlined)
  • the whole "pass by reference/value" vs "reference-type/value-type" confusion - probably more a cause of myth(s) than a myth itself
  • 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)
link|flag
Have you really had people claim strings were value types? That is a scarely level of misinformation :-O – David Arno Oct 6 '08 at 10:01
Yes; usually, for example, with generics - i.e. Foo<T>(T value) where T : struct - it works for their int/float/etc - which are all primatives, so surely it should work with string??? – Marc Gravell Oct 6 '08 at 10:04
My lecturers preach string as a value type. – Matthew Scharley Oct 6 '08 at 12:40
1  
a C#/.NET string is immutable which is probably why so many people confuse the two. – Marc Gravell Oct 6 '08 at 20:45
vote up 7 vote down

".NET is only available for Windows"

This is a completely untrue myth, for the open source version of .NET - mono - is available for many OS's.

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.

link|flag
...but mono supports only a small subset of .NET 3.5. – Terminus Oct 6 '08 at 8:47
This is a good thing. 3.5 has become a case of bloatware after all. – David Arno Oct 6 '08 at 8:53
@Terminus: .NET 3.5 is still fairly new to many devs, you say that as if it's impossible to build an app without it. – Kev Oct 6 '08 at 9:13
I think the real problem is the terminology; mono is a CLI implementation; .NET Framework is Microsoft's CLI implementation. So yes; you can use mono to use CLI code (+1), but it isn't the .NET Framework. – Marc Gravell Oct 6 '08 at 9:40
A much better counter to this would be Silverlight. – Marc Gravell Oct 6 '08 at 9:41
show 12 more comments
vote up 6 vote down

.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)

Also as its managed code you dont have to bother closing connections and destroying objects

link|flag
vote up 5 vote down

According to Microsoft, Generics are faster than casting (even in absence of boxing/unboxing).

Tony Northrup - co-author of MCTS 70-536: Application Development Foundation - states in the same book the following:

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.

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).

link|flag
Ah, yes; 70-536 - the book with the largest errata I have /ever/ seen. Note that I'm not disputing the performance point, though. – Marc Gravell Oct 6 '08 at 11:21
yep, the book pretty much sucks – JohnIdol Oct 6 '08 at 13:34
That largely depend on how much casting you have – Orlangur Oct 6 '08 at 15:51
I might not have had enough casting (only 10000000 iterations) - but I am guessing Tony Northrup did have enough – JohnIdol Oct 6 '08 at 17:42
vote up 4 vote down

Myth: When you discover a memory leak in your managed application, the reason is that the garbage collector is not working right.

In most cases it is the program not releasing references to useless objects.

link|flag
Yup! this is a special case of the "You don't need to think about memory management when you've got a GC" - myth – Mendelt Oct 6 '08 at 8:52
vote up 1 vote down

Myth: ASP.NET is slow

link|flag
Heh, indeed. ASP.NET (and Java EE) is much much more faster and scalable than PHP/Perl/Python/etc. – Terminus Oct 6 '08 at 8:57
@Terminus: Whilst I'm a .NET advocate, you can build fast and scalable apps on most stacks provided you know what your doing. Bad dev blames his tools. – Kev Oct 6 '08 at 9:16
I'd say ignorant devs blame bad devs tools – JohnIdol Oct 6 '08 at 17:44
Unfortunately all that idea doesn't stand real benchmarks: shootout.alioth.debian.org/u32q/… That doesn't meen PHP is bad or you can't write professional website. It simple states that ASP.NET is slower than PHP. – Terminus Oct 6 '08 at 18:22
Damn...I forgot, Don't feed the trolls. – Kev Oct 6 '08 at 18:33
show 1 more comment
vote up 1 vote down

.NET is slower than native code.

link|flag
It is. Many times slower. Sometimes it doesn't matter though. shootout.alioth.debian.org/u32q/… – Terminus Oct 6 '08 at 17:44
I suppose Microsoft's .NET stuff is faster than Mono, though – leod Oct 6 '08 at 18:29
It all depends what your write. Micro benchmarks says nothing, really. – leppie Oct 6 '08 at 19:02
It depends, string manipulation should actually be faster in the managed code. – Michael Damatov Oct 7 '08 at 22:35
vote up 0 vote down

@David Arno

That is wrong information.

Microsoft .Net IS NOT available for anything other than windows. Which renders its claim of platform independence into the dust.

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.

link|flag
I did not say that Micrososft .NET is available on multiple platforms. I said .NET is. No mention of Microsoft. Mono is an implementation of .NET. So sorry mate, but you are the one that is wrong. – David Arno Oct 6 '08 at 9:18
@mirnazim: I don't even think MS make any claims to .NET being platform independent. – Kev Oct 6 '08 at 9:28
See Silverlight... OK, it isn't the full .NET Framework, but it is a version of the .NET environment available on multiple OS implementations. – Marc Gravell Oct 6 '08 at 9:43
mirnazim, this should be in a comment. Please use answers to, er, provide answers. – Sklivvz Oct 6 '08 at 9:47
Mono is an implementation based on the same ecma standards as the .Net CLR. You can run an executable compiled in visual studio on mono as long as you don't use any PInvoke stuff (no winforms, no wpf etc.) that makes .Net cross platform. – Mendelt Oct 6 '08 at 10:19
show 4 more comments
vote up -1 vote down

Myth: Memory allocation is faster in managed code than in native code.

link|flag
Really? I would have thought it was self evident that allocation would be faster. Garbage collection on the other hand... – 1800 INFORMATION Oct 6 '08 at 8:45
That is not a myth. Managed code doesn't suffer from a fragmented heap, and so there is no need to hunt for enough space to allocate memory to a new object. Therefore managed code memory allocation quite often will be faster. Of course the trade off is - relatively - slow garbage collection. – David Arno Oct 6 '08 at 8:47
"Managed code doesn't suffer from a fragmented heap". Of course the memory buffer .NET uses does not have that issue, but that buffer is allocated from the underlying OS and it may grow in size, needing reallocations, data copying from one place to another, etc. This makes things much slower. – Terminus Oct 6 '08 at 8:50
But during the lifetime of a normal application, this will not happen often and 99% of the allocations will not suffer from that problem. – OregonGhost Oct 6 '08 at 8:52
I don't know about .NET because I don't work with it, but Objective-C is faster with managed code than manual allocation. – Giao Oct 6 '08 at 8:53
show 4 more comments
vote up -5 vote down

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.

If not then you are left with Mono as your option(assuming that you need to develop in a .Net like environment)

link|flag
You make it sound as if every app written by a dev shop/team must be cross platform which is often not the case. – Kev Oct 6 '08 at 9:39
vote up -10 vote down

".NET rocks!"

link|flag
That's not a myth; it is a very real podcast. It's a very good one too. – David Arno Oct 6 '08 at 9:23
I don't know about the pod cast but my experience with .NET did not rock at all. Most of the applications running on your machines as you read this do not have a viable .NET alternative. – Agnel Kurian Oct 6 '08 at 12:01
That makes about as much sense as saying "most of the applications running on your machines as you read this do not have a viable Haskell alternative". :) – Kev Oct 6 '08 at 12:07
That maybe because Haskell was not intended as a platform for desktop development. – Agnel Kurian Oct 6 '08 at 12:11
You seem to have completely missed my point – Kev Oct 6 '08 at 12:16
show 8 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.