Search Results

2
votes

Using Unsigned Primitive Types

I will point out that in C# you can turn on /checked to check for arithmetic overflow / underflow, wh …
0
votes

live debugging a stack overflow

One option you have is to use a try/catch block at a high level, and then print or log the stack trace provided by the exception. Every exception has a StackTrace property that can tel …
0
votes

live debugging a stack overflow

For what its worth, starting in .NET 4.0, Visual Studio (and any debuggers that rely on the ICorDebug api) gain the ability to debug minidumps. This means you will be able to load the …
2
votes

p/invoke C function that returns pointer to a struct

Caveat: this will only work if the pointer returned is to memory already managed by the CLR I believe what you are looking for is // C# import [DllImport("M …
15
votes

Which hash function should I choose?

In cryptography, hash functions provide three separate functions. Collision resistance: How hard is it for someone to find two messages (any two messages) t …