Tagged Questions
The Common Language Runtime (CLR) is a core component of Microsoft's .NET initiative. It is Microsoft's implementation of the Common Language Infrastructure (CLI) standard, which defines an execution environment for program code. In the CLR, code is expressed in a form of bytecode called the Common Intermediate Language (CIL, previously known as MSIL—Microsoft Intermediate Language).
277
votes
4answers
8k views
Try-catch speeding up my code?
I wrote some code for testing the impact of try-catch, but seeing some surprising results.
static void Main(string[] args)
{
Thread.CurrentThread.Priority = ThreadPriority.Highest;
...
106
votes
2answers
2k views
Making your .NET language step correctly in the debugger
Firstly, I apologize for the length of this question.
I am the author of IronScheme. Recently I have been working hard on emitting decent debug info, so that I can use the 'native' .NET debugger.
...
99
votes
9answers
7k 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 ...
88
votes
20answers
3k 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, ...
75
votes
9answers
11k views
What are 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 ...
56
votes
13answers
4k 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 ...
50
votes
7answers
2k 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:
...
46
votes
4answers
11k views
Resolving MSB3247 - Found conflicts between different versions of the same dependent assembly
A .NET 3.5 solution ended up with this warning when compiling with msbuild.
Sometimes NDepend might help out but in this case it didn't give any further details. Like Bob I ended up having to resort ...
41
votes
7answers
20k views
In C#, why is String a reference type that behaves like a value type?
A String is a reference type even though it has most of the characteristics of a value type such as being immutable and having == overloaded to compare the text rather than making sure they reference ...
35
votes
6answers
2k views
Why check this != null?
Occasionally I like to spend some time looking at the .NET code just to see how things are implemented behind the scenes. I stumbled upon this gem while looking at the String.Equals method via ...
35
votes
4answers
5k 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 ...
32
votes
7answers
505 views
Why doesn't the CLR always call value type constructors
I have a question concerning type constructors within a Value type. This question was inspired by something that Jeffrey Richter wrote in CLR via C# 3rd ed, he says (on page 195 - chapter 8) that you ...
32
votes
7answers
938 views
Does the .NET CLR Really Optimize for the Current Processor
When I read about the performance of JITted languages like C# or Java, authors usually say that they should/could theoretically outperform many native-compiled applications. The theory being that ...
31
votes
7answers
572 views
How is it that an enum derives from System.Enum and is an integer at the same time?
Edit: Comments at bottom. Also, this.
Here's what's kind of confusing me. My understanding is that if I have an enum like this...
enum Animal
{
Dog,
Cat
}
...what I've essentially done ...
30
votes
6answers
13k 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 ...
29
votes
3answers
2k views
Clojure on the CLR
I'm interested in investigating Clojure on the CLR. I see that there is a port--but I'm always a bit leery of these second-class citizens (i.e. they don't have the stability or functionality of the ...
27
votes
4answers
413 views
Instantiation of recursive generic types slows down exponentially the deeper they are nested. Why?
Let's start with these three recursive generic interfaces† that represent immutable stacks:
interface IStack<T>
{
INonEmptyStack<T, IStack<T>> Push(T x);
}
interface ...
25
votes
3answers
14k views
Float vs Double Performance
I did some timing tests and also read some articles like this one (last comment),and it looks like in Release build, float and double values take the same amount of processing time.
How is this ...
24
votes
4answers
8k views
Force x86 CLR on 'Any CPU' .NET assembly
In .NET, the 'Platform Target: Any CPU' compiler option allows a .NET assembly to run as 64bit on a x64 machine, and 32bit on an x86 machine. It is also possible to force an assembly to run as x86 on ...
24
votes
9answers
9k views
Create empty C# event handlers automatically
It is not possible to fire an event in C# that has no handlers attached to it. So before each call it is necessary to check if the event is null.
if ( MyEvent != null ) {
MyEvent( param1, param2 );
...
24
votes
12answers
2k 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 ...
22
votes
4answers
531 views
Why is memory access in the lowest address space (non-null though) reported as NullReferenceException by .NET?
This causes an AccessViolationException to be thrown:
using System;
namespace TestApplication
{
internal static class Program
{
private static unsafe void Main()
{
...
22
votes
9answers
991 views
Why does null exist in .NET?
Why can values be null in .NET? Is this superior to having a guarantee where everything would have a value and nothing call be null?
Anyone knows what each of these methodologies are called?
Either ...
21
votes
2answers
372 views
Why can I compare sbyte to all the other numeric types *except* ulong?
You can do >, <, ==, etc. comparisons between sbyte and byte, int, uint, short, ushort, long, double, and float. But not ulong.
My brain is exploding. Can anyone explain why sbyte can be ...
19
votes
4answers
782 views
Are there any fairly mature Lisp/Scheme/Clojure compilers for .Net CLR?
I am seeing several variants out there; ClojureCLR, LSharp, IronScheme, IronLisp, among others. Are any of these actively maintained and/or anywhere close to "mature", or are they mostly experiments ...
19
votes
6answers
2k views
How does C# compilation get around needing header files?
I've spent my professional life as a C# developer. As a student I occasionally used C but did not deeply study it's compilation model. Recently I jumped on the bandwagon and have begun studying ...
19
votes
5answers
5k 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?
18
votes
2answers
543 views
When is a method eligible to be inlined by the CLR?
I've observed a lot of "stack-introspective" code in applications, which often implicitly rely on their containing methods not being inlined for their correctness. Such methods commonly involve calls ...
18
votes
8answers
829 views
Why are immutable objects thread-safe?
class Unit {
private readonly string name;
private readonly double scale;
public Unit(string name, double scale) {
this.name = name;
this.scale = scale,
}
public ...
17
votes
6answers
1k views
Is the .NET JIT-compiled code cached? Where?
A .NET program is first compiled into MSIL code. When it is executed, the JIT compiler will compile it into native machine code.
I am wondering:
Where is these JIT-compiled machine code stored? Is ...
17
votes
2answers
459 views
The uncatchable exception, pt 2
Update: I've filed a bug report on Microsoft Connect: https://connect.microsoft.com/VisualStudio/feedback/details/568271/debugger-halting-on-exception-thrown-inside-methodinfo-invoke#details
If you ...
17
votes
9answers
534 views
Why are static classes considered “classes” and “reference types”?
I’ve been pondering about the C# and CIL type system today and I’ve started to wonder why static classes are considered classes. There are many ways in which they are not really classes:
A “normal” ...
17
votes
7answers
5k views
Difference between CLR 2.0 and CLR 4.0
I have read countless blogs, posts and StackOverflow questions about the new features of C# 4.0. Even new WPF 4.0 features have started to come out in the open. What I could not find and will like to ...
17
votes
3answers
2k views
Are static indexers not supported in C#?
I've been trying this a few different ways, but I'm reaching the conclusion that it can't be done. It's a language feature I've enjoyed from other languages in the past. Is it just something I should ...
16
votes
6answers
348 views
Are C# uninitalized variables dangerous?
I'm familiar with the C# spec, section 5.3 which says that a variable has to be assigned before use.
In C and unmanaged C++ this makes sense as the stack isn't cleared and the memory location used ...
16
votes
4answers
324 views
Why is IL code packed into an exe in a C# application?
I was trying to regenerate an exe by doing a round trip of ILDASM and then ILASM on a C# executable file. As I understand, the .il file generated by ILDASM is sufficient to generate .exe back.
I am ...
16
votes
4answers
2k views
How does Parrot compare to other virtual machines?
Parrot is the virtual machine originally designed for Perl 6.
What technical capabilities does the Parrot VM offer that competing virtual machines such as the Java Virtual Machine (JVM)/Hotspot VM ...
16
votes
6answers
4k views
Are there any .NET CLR/DLR implementations of ECMAScript?
Does anyone know of real (i.. no vaporware) implementations of ECMAScript targeting the .NET CLR/DLR? Ideally something like what Rhino is for Java. A solid port of Rhino running on .NET Framework / ...
16
votes
5answers
926 views
Why are sealed types faster?
Duplicate:
Why seal a class?
I am wondering about the deeper details about why this is true.
16
votes
6answers
4k 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?
16
votes
7answers
13k views
Fatal Execution Engine Error (79FFEE24) (80131506)
I'm encountering problems with my .NET Framework 3.0 SP1 application. It is a C# winforms application communicating with a COM exe. Randomly either the winforms app or the COM exe crashes without any ...
16
votes
2answers
4k views
Equivalent of Class Loaders in .NET
Does anyone know if it possible to define the equivalent of a "java custom class loader" in .NET?
To give a little background:
I am in the process of developing a new programing language that ...
15
votes
3answers
339 views
Is a ret instruction required in .NET applications?
I noticed that the C# compiler generates a ret instruction at the end of void methods:
.method private hidebysig static void Main(string[] args) cil managed
{
// method body
L_0030: ret
}
...
15
votes
5answers
465 views
Haskell for the .net platform?
I'm a .NET developer by day, but have been playing with Haskell in my spare time for awhile now. I'm curious: any Haskell .net implemenations in the same vein as IronPython?
15
votes
2answers
2k views
Is MarshalByRefObject special?
.NET has a thing called remoting where you can pass objects around between separate appdomains or even physical machines. I don't fully understand how the magic is done, hence this question.
In ...
15
votes
4answers
7k views
C# 'is' operator performance
I have a program that requires fast performance. Within one of its inner loops, I need to test the type of an object to see whether it inherits from a certain interface.
One way to do this would be ...
14
votes
2answers
265 views
Why is String.GetHashCode() implemented differently in 32-bit and 64-bit versions of the CLR?
What are the technical reasons behind the difference between the 32-bit and 64-bit versions of string.GetHashCode()?
More importantly, why does the 64-bit version seem to terminate its algorithm when ...
14
votes
3answers
215 views
What happens when a .net application is started?
I have been developing apps using .net for quite sometime now. But, I am still not
sure how does the CLR know that a .net app has started. Is there like one instance of CLR per app? I don't think this ...
14
votes
7answers
538 views
What's the magic of arrays in C#
int[] a = new int[5];
string[] b = new string[1];
The types of both a and b inherit from the abstract System.Array, but there is no real classes in the built-in library(it seems that there are some ...
14
votes
9answers
412 views
Book Recommendation to learn more about Application Virtual Machines [closed]
I have always been intrigued and mystified by Virtual Machines and how they operate. I want to learn more about the inner workings of a virtual machine.
Are there any good books on Virtual ...