1
vote
What’s the most efficient way to marshal C++ structs to C#?
This may be outside the bounds of your question, but I would be inclined to write a little assembly in Managed C++ that did an fread() or something similarly fast to read in the structs. Once you'v …
2
votes
What book on TDD for C# with treatment of Mocks
The Art of Unit Testing: With Examples in .NET by Roy Osherove (Amazon Page, …
3
votes
iTextSharp diacritics
You're going to need to figure out what the Unicode representation is for your diacritical characters. You can embed Unicode characters i …
0
votes
Rhino.Mocks - Stub one method of class and let other real methods use this stubbed one
I'm not sure which version of Rhino.Mocks you're using, but what I would do is make only the GetCurrentDateTime() method virtual (like an earlier poster suggested), then create your mock object usi …
1
vote
Strategies for multithreaded application
To Quibblesome's excellent suggestions, I might also add that using immutable objects is often an effective way to reduc …
1
vote
Refactoring exceptions for workflow
Check out Working Effectively with Legacy Code by Michael Feathers, particularly Chapter 22 (I Need to Change a Monster Method and I Can't Write Tests for It). There are a lot of great tec …
