Search Results

0
votes
4answers
981 views

What happened to to the .Net Framework Configuration tool?

Older versions of the .Net Framework used to install "Microsoft .NET Framework v1.0 / v1.1 / v2.0 Configuration" in the Control Panel, under Administrative Tools. I just noticed that there isn't a …
1
vote
7answers
383 views

Targeting multiple versions of .net framework

Suppose I have some code that would, in theory, compile against any version of the .net framework. Think "Hello World", if you like. If I actually compile the code, though, I'll g …
3
votes

Which Dynamic .NET language makes more sense to learn, Iron Ruby or Iron Python?

Whichever you choose, take a look at IronEditor -- it's great for playing around. I'm currently using it to try and pick up those lan …
0
votes

What happened to to the .Net Framework Configuration tool?

To sort out the confusion between the apparently conflicting answers above, this is my current understanding of the answer: Use the 2.0 version, as DAC and Codeslayer recommended …
3
votes

DefaultValue for System.Drawing.SystemColors

This may help: http://support.microsoft.com/kb/311339 -- a KB article entitled "MSDN documentation for the DefaultValueAttribute …
3
votes

Will the GC call IDisposable.Dispose for me?

I don't think so. You have control over when Dispose is called, which means you could in theory write disposal code that makes assumptions about (for instance) the existence of other objects. You h …
1
vote

Is there some way to compile a .NET application to native code?

You can use ngen.exe to generate a native image but you still have to distribute the original non-native code as well, and it still needs the framework installed on the ta …