Tagged Questions

5
votes
4answers
105 views

What are the situations or pros and cons to use of C++/CLI over C#

I have been keeping up with .NET CLR for awhile now, and my language of choice is C#. Up until recently, I was unaware that C++/CLI could produce "mixed mode" executables capable of running native …
1
vote
2answers
40 views

What are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization?

As the title says, what are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization? I have read a little about the reordering of instructions …
3
votes
0answers
110 views

Lifetime of worker process or AppDomain

I have an ASP.NET app hosted in IIS, and I have automatic worker process recycling/shutdown disabled. I'd like to have a rough idea of how long the app has been running continuously without being …
0
votes
4answers
84 views

How does the .NET CLR work?

I've been searching this on net, but could not find one in layman's language. Can anyone help me out?
2
votes
5answers
159 views

Why cannot C# generics derive from one of the generic type parameters like they can in C++ templates?

Why cannot C# generics derive from one of the generic type parameters like they can in C++ templates? I mean I know it impossible because CLR does not support this, but why? I am aware of the …
2
votes
3answers
113 views

Managed C++ to form a bridge between c# and C++

I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's been a while. Anyway, I'm doing the reverse of what most people do. Calling C# code …
3
votes
3answers
83 views

Same code acts differently on different machines - what might be the cause ? (CLR version issue ?)

I just finished debugging a problem, where our program crashed on a production server, but never on development machines. I have made this small program, which I could reproduce the issue with: …
0
votes
1answer
24 views

When a thread is blocked on Monitor.Enter(obj), is it put in obj’s ready queue?

If so, that would imply that the blocked thread can enter when another thread calls Monitor.Wait(obj). This seems a little odd to me in that it must contend with other threads in the ready queue. If …
2
votes
2answers
53 views

Get Current .NET CLR version at runtime ?

How can I get the current CLR Runtime version in a running .NET program ?
7
votes
3answers
215 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 …
0
votes
4answers
106 views

Is it more efficient to call the .net Garbage collector?

Due to the overhead of calling the garbage collector in the CLR, is it more efficient to leave it, or force to garbage collection when objects go out of scope?
1
vote
2answers
52 views

IL / CLR / DLR References?

I'm wanting to learn more about IL and CLR / DLR under the hood. A friend of mine recommended the book "Inside Microsoft .NET IL Assembler", but since it came out in 2002 I fear it's pretty out of …
5
votes
6answers
179 views

Is it possible to clone a ValueType?

Is it possible to clone an object, when it's known to be a boxed ValueType, without writing type specific clone code? Some code for reference List<ValueType> values = new List<ValueType> …
1
vote
3answers
22 views

Execution-time performance of code in class created using reflection versus a ‘normal’ class.

Is the execution time (run-time) performance of code in a class that is loaded via reflection identical to the same code when the class is created using the new keyword? I say yes. But I was …
1
vote
2answers
52 views

Shoud I use LayoutKind.Auto for my structs if they don’t perform in COM Interop?

By default structs in C# are implemented with [StructLayout( LayoutKind.Sequential )] for reasons basically stating that these type of objects are commonly used for COM Interop and their fields must …

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