0
votes
What is quicker, switch on string or elseif on type?
Three thoughts:
1) If you're going to do something different based on the types of the objects, it might make sense to move that behavior into those classes. Then instead of switch or if-el …
0
votes
Generics vs. Array Lists
If the entities in the ArrayLists are Object types, you'll gain a little from not casting them to the correct type. If they're Value types (structs or primitives like Int32), then the boxing/unboxi …
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. …
6
votes
Locking in C#
Reading or writing a 32-bit or smaller field is an atomic operation in C#. There's no need for a lock in the code you presented, as far as I can see.
…
1
vote
What is a good application programming problem to solve for beginners?
A simple "business automation" application might be a good idea. Write an inventory management application, or software to handle work scheduling, maybe?
…
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 …
3
votes
Is buffer overflow/overrun possible in completely managed asp.net c# web application
In the general case, you don't need to worry about buffer overruns. This is one of the major advantages of managed code, garbage collection being perhaps the other major advantage.
There ar …
3
votes
Are doubles faster than floats in c#?
If load & store operations are the bottleneck, then floats will be faster, because they're smaller. If you're doing a significant number of calculations between loads and stores, it should be a …
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 …
1
vote
WAV file auto repeat in C#
If you only need to do this with a small number of files, you might as well do it by hand with Audacity.
…
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
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. …
1
vote
How to detect that a file is not ANSI-Latin1?
On a Unix-type system, you'd use the "file" command for this. I wonder if there's a port of "file" to Windows? I couldn't find one in Google, but I'd bet it's available on GNU.org somewhere...
…
0
votes
What’s your approach to learning a new technology?
Write something with it. I usually do a simple game or puzzle of some sort.
…
