42
votes
15answers
2k views
What can you do in MSIL that you cannot do in C# or vb.NET?
All code written in .NET languages compiles to MSIL, but are there specific tasks / operations that you can do only using MSIL directly?
Let us also have things done easier in MSIL than C#, VB.NET, …
28
votes
6answers
707 views
A definite guide to API-breaking changes in .NET
I would like to gather as much information as possible regarding API versioning in .NET/CLR, and specifically how API changes do or do not break client applications. First, let's define some terms:
…
16
votes
13answers
879 views
casting vs using the ‘as’ keyword in the CLR
I'm learning about design patterns and because of that I've ended using a lot of interfaces. One of my "goals" is to program to an interface, not an implementation.
What I've found is that I'm doing …
15
votes
12answers
1k views
Is casting the same thing as converting?
In Jesse Liberty's Learning C# book, he says "Objects of one type can be converted into objects of another type. This is called casting."
If you investigate the IL generated from the code below, you …
14
votes
6answers
3k views
List major differences between C# and java?
I just want to clarify one thing. This is not a question on which one is better, that part I leave to someone else to discuss I don't care about it.
I've been asked this question on my job interview …
13
votes
5answers
452 views
Why are sealed types faster?
Duplicate:
Why seal a class?
I am wondering about the deeper details about why this is true.
11
votes
6answers
588 views
jvm design decision
Why does the jvm require around 10 MB of memory for a simple hello world but the clr doesn't. What is the trade-off here, i.e. what does the jvm gain by doing this?
Let me clarify a bit because I'm …
10
votes
6answers
928 views
sizeof(int) on x64?
When I do sizeof(int) in my C#.NET project I get a return value of 4. I set the project type to x64, so why does it say 4 instead of 8? Is this because I'm running managed code?
9
votes
3answers
368 views
Performance surprise with “as” and nullable types
I'm just revising chapter 4 of C# in Depth which deals with nullable types, and I'm adding a section about using the "as" operator, which allows you to write:
object o = ...;
int? x = o as int?;
if …
9
votes
8answers
400 views
Can anyone give me a REALLY good reason to use CLR type names instead of C# type names (aliases) in code (as a general practice)?
We have a bit of a battle going on in our development team over this. I would love to hear what others think about this.
9
votes
5answers
1k views
Have you ever used ngen.exe?
Has anybody here ever used ngen? Where? why? Was there any performance improvement? when and where does it make sense to use it?
9
votes
3answers
534 views
Implementing C# for the JVM
Is anyone attempting to implement C# for the JVM? As a Java developer, I've been eyeing C# with envy, but am unwilling to give up the portability and maturity of the JVM, not to mention the diverse …
9
votes
8answers
796 views
What is the minimum knowledge of CLR a .NET programmer must have to be a good programmer?
When we talk about the .NET world the CLR is what everything we do depends on.
What is the minimum knowledge of CLR a .NET programmer must have to be a good programmer?
Can you give me one/many you …
9
votes
5answers
2k views
How do the .NET Framework, CLR and Visual Studio version numbers relate to each other?
With the recent announcement of .NET 4.0 and Visual Studio 2010, it is becoming ever more difficult to keep track of what .NET Framework versions build on what version of the CLR and belong with which …
9
votes
2answers
2k views
Will .Net 4.0 include a new CLR or keep with version 2.0
Will .Net 4.0 use a new version of the CLR (v2.1, 3.0) or will it stick with the existing v2.0?
Supplementary: Is it possibly going to keep with CLR v2.0 and add DLR v1.0?
Update: Whilst this might …
