4
votes
3answers
78 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
0answers
6 views
CLR internals / Rotor / Shared Source CLI 2.0 Book release date?
Is anyone aware of if/when this will actually be released as hard/soft back? A draft can be downloaded from Ted Newards blog but I can't seem to find anything relating to a release date.
5
votes
6answers
170 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
69 views
Clear the CLR memory
Im running into a problem where the tool im using for development (a simulator tool) keeps throwing OutofMemoryException's, I know its not my app, because no matter what project im running, it …
1
vote
2answers
46 views
Is it possible to reload the CLR?
I'm fiddling with a project where the CLR is hosted within a C application. Is there a supported way to unlink the CLR and relaunch it?
0
votes
1answer
11 views
SQL CLR Stored Procedure - Relative path for DllImport?
I have a C# project consisting of stored procedures that reference a win32 dll from another project in the solution. Currently, dllimport is using absolute paths to reference it. If I use a relative …
0
votes
1answer
43 views
custom mscorlib.dll without native code
Is it possible to build custom mscorlib.dll without any use of native code (pinvoke allowed :-)?
I've tried a little experiment this weekend to see how hard it would be to do it and had following …
1
vote
4answers
197 views
Converting .NET App to x86 native code
There's a program written entirely in C# that targets .NET Framework 2.0.
Is there a way I could somehow compile (translate) managed EXE to a native one so it could be .NET-agnostic? I know there are …
0
votes
1answer
79 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 Vote1;
…
4
votes
3answers
79 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 will return the …
2
votes
2answers
38 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' Mind taking a …
3
votes
9answers
227 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 general and I'd be open to …
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. However when we …
4
votes
5answers
202 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 without nasty unmanaged …
2
votes
2answers
74 views
Removing delegates from chain
class Program
{
internal delegate int CallBack(int i);
static void Main(string[] args)
{
CallBack callbackMethodsChain = null;
CallBack cbM1 = new CallBack(FirstMethod);
…
