0
votes
2answers
58 views
convert a list of structs from c# to c++
I have the following c# code
static void Main(string[] args)
{
List<Results> votes = new List<Results>();
}
public struct Results
{
public int …
4
votes
3answers
77 views
How|Where are closed-over variables stored?
This is a question based on the article "Closing over the loop variable considered harmful" by Eric Lippert.
It is a good read, Eric explains why after this piece of code all funcs …
1
vote
2answers
33 views
Axapta Validation Class
I've written a class to handle regex validation in AX2009. Problem is that it always returns false, no matter what the expression or input string. Returns no errors, just 'false' …
3
votes
9answers
213 views
In depth C# Book to read next
I have recently finished reading C# in depth by Jon Skeet and I'm looking for the next book to read, one that extends a little more "in depth" my knowledge of c# and .NET in genera …
4
votes
5answers
195 views
How to crash the .NET common language runtime (CLR) in pure .net
There is a similar question targeting the Java VM but I haven't found a question for .net (please close and mark as duplicate if I was missing something).
So - is it possible with …
2
votes
2answers
23 views
Getting a byte array from out of process C++ COM to C#
What's the best way to get a chunk of memory (i.e. void*) from a COM server to C#?
We have been using an IStream (using CreateStreamOnHGlobal) and passing that back, which worked. …
2
votes
2answers
73 views
Removing delegates from chain
class Program
{
internal delegate int CallBack(int i);
static void Main(string[] args)
{
CallBack callbackMethodsChain = null;
CallBack cbM1 = new Call …
1
vote
6answers
82 views
How to make the default value of a type as Nothing?
For example Dim aInt as Integer should have the value as nothing instead of 0.
2
votes
5answers
82 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?
0
votes
3answers
97 views
(.NET 4) - How do I know which version of the .NET Framework my program is running on?
I have a program which I believe to be running in .NET 4.0, but I am unable to mixed-mode debug it (something new .net 4.0 for 64-bit application)
I wanted to confirm if I'm truly …
1
vote
4answers
66 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
117 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?
1
vote
3answers
80 views
How to unload assemblies from the GAC?
I am trying to run automated tests on a particular product.
The test consists of installing the product into different locations on the hard drive and then performing some operatio …
7
votes
6answers
219 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 …
3
votes
5answers
249 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 …
