Tagged Questions

1
vote
5answers
44 views

C# - Release native resources

Hi All, I am relatively new to .net. As I was trying to grasp the concept of Garbage Collection(from "CLR via C#"), I came to know how strong is the Garbage collection approach. B …
3
votes
3answers
100 views

How do ValueTypes derive from Object (ReferenceType) and still be ValueTypes?

C# doesn't allow structs to derive from classes, but all ValueTypes derive from Object. Where is this distinction made? How does the CLR handle this?
2
votes
4answers
63 views

What is your recommendation for a good book on the .NET CLR and CIL?

Do you know any good book about the workings of the CLR, the .NET Framework and CIL as opposed to any specific .NET language?
1
vote
3answers
48 views

CLR - Common language runtime detected an invalid program in VS.NET

I have been using Visual Studio 2008 quite long but lately I am getting this message when I am developing an application in C#: "Common language runtime detected an invalid progra …
3
votes
5answers
213 views

Using Static Constructor (Jon Skeet Brainteaser)

As a relative newbie I try to read as much as I can about a particular subject and test/write as much code as I can. I was looking at one of Jons Brainteasers (question #2) and m …
0
votes
2answers
79 views

Why does not C# support operator overloading with pass by reference?

Is this a CLR restriction or a language design decision? I tried to do it in C++/CLI, of course where it works because the need to support native c++: public ref class Test { …
2
votes
1answer
33 views

How do i get a reference to all managed threads

I know there's nothing in the box ... but does anyone have any tricks. Managed threads not OS threads please. Cheers Answering the comments: Version is .Net 3.5. I want all ma …
7
votes
6answers
166 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 fi …
1
vote
3answers
73 views

.net CLR related question

Hi , This is a .net CLR related question. I have 3 objects object A,B,C A refres B and B refers c What happens to these objects in the heap if i kill the Object "A" explicitly. …
1
vote
5answers
85 views

C# Lambda puzzling behaviour

Func<Classification, string> test1 = c => c.Id = "x"; Func<Classification, string> test2 = c => { return c.Id = "x";}; I've worked with lambda's for nearly a y …
2
votes
5answers
159 views

Learning C# quickly gathering all necessary concepts

Hi All, I want to learn .NET and I have 2 weeks time of this. I have sound knowledge of CLR, Assemblies and certain basics. I have a copy of "CLR via C#". But I need to learn advan …
1
vote
5answers
63 views

Invoking CLR stored procedures

In short, where can I find C#/VB client side sample code that calls CLR stored procedure with some argumnet [like a sqlxml data] and receives a datareader or other form of result ? …
6
votes
2answers
62 views

CLR question. Why method overloading in C# decides that null is a string? [closed]

Possible Duplicate: C#: Passing null to overloaded method - which method is called? Here is a test case object a = null; var b = Convert.ToString (null); var c = Convert. …
1
vote
2answers
72 views

How this keyword is provided for object instances in C#?

When you have an object instance in C#, you can use the this keyword inside the instance scope. How does the compiler handles it? Is there any assistance for this at runtime? I am …
5
votes
7answers
399 views

Is the CLR a virtual machine ?

Hi, I read a book which referred .net CLR as virtual machine ? Can anyone justify this ? What is the reason we need the concept of virtual machines on some development platforms ? …

1 2 3 4 5 25 next
15 30 50 per page