-2
votes
What is the correct way to make a custom .NET Exception serializable?
I have to think that wanting to serialize an exception is a strong indication that you're taking the wrong approach to something. What's the ultimate goal, here? If you're passing the exception bet …
2
votes
Is there any benefit to using Cocoa’s version of MVC with .NET?
There's no reason not to do it that way, if it makes more sense to you. Be aware that a lot of things in the Cocoa framework are the way they are due to higher-level design decisio …
0
votes
Can I get calling instance from within method via reflection/diagnostics?
I feel like I'm missing something, here. The static method can be called from literally anywhere. There's no guarantee that a class A or class B instance will appear anywhere in the call stack. …
2
votes
When would I need a SecureString in .NET?
Well, as the description states, the value is stored encrypted, with means that a memory dump of your process won't reveal the string's value (without some fairly serious work).
The reason …
5
votes
How can I keep a class from being inherited in C#?
Also be aware that "I don't think anybody will ever need to inherit from this" is not a good reason to use "sealed". Unless you've got a specific need to ensure that a particular implementation is …
0
votes
Visual Studio 2005, how to get where project are used in a solution?
The project files are in XML, so writing something to parse them should be no big deal. If you just want to find which projects reference particular other projects, "grep" would probably work well …
1
vote
Unit Testing, Deadlocks, and Race Conditions
I don't think looking for race conditions really falls into the realm of unit testing. More-or-less by definition, the only way to test for race conditions is pseudo-randomly. Unless you're willing …
0
votes
Graph rendering using 3D acceleration
This makes we render about 25M samples in a single screen.
No you don't, not unless you've got a really really large screen. Given that the scr …
2
votes
Highly complex, integrated web app - which language would you use?
I think that the "get this information from a DLL" and "get this information from a JAR file" activities would have nothing in common with each other, or with the web application to display the inf …
0
votes
Is there a prevailing unit testing framework for the .NET Compact Framework?
For an embedded project running on Portable.NET, we ended up writing our own minimal version of NUnit, since we couldn't get the NUnit code to compile and run on that runtime. It wasn't really all …
3
votes
Should I unit test for multithreading problems before writing any lock? (.NET C# TDD)
You shouldn't really test for thread safety in a unit test. You should probably have a separate set of stress tests for thread-safety.
Okay, now that you've posted the code: …
0
votes
Porting a .NET app to the Mac
Mono seems like the obvious choice, but the last time I looked into this, their Windows Forms support was practically non-existent. I'm sure it's gotten better, but it'd be worthwhile to take a loo …
3
votes
What is the most under-valued part of .NET?
My favorite underutilized features are probably Attributes and Reflection. Of course, those two go together a lot of the time.
…
0
votes
C#: Notification before WeakReference is collected?
Your question doesn't make sense to me. Where is the code that's going to be called supposed to reside? Given that the weak references will be nulled before the referenced object is destroyed, it d …
0
votes
How do RAM Test Applications work? C# Example?
You probably can't do as good of a job testing memory from a C# program in Windows as you could from a C or Assembly language program running with no OS, but you could still make something useful. …
