1
vote
0
votes
Singleton with a public (single-instance) constructor
Create the singleton as a static member and make all methods access the single static instance.
class SingletonWrapper {
private static RealSingleton instance = new RealSinglet …
0
votes
How to Optimize/Speedup Code Execution C#, Windows.Net
If C#’s StringBuilder is anything like Java’s StringBuilder then a line like
strMain.append(strQuery+" ");
is a sure sign that you have not understood what StringB …
4
votes
japanese email subject encoding
Check http://en.wikipedia.org/wiki/MIME#Encoded-Word for a description on how to encode header fields in MIME-compliant m …
3
votes
What are the tell-tale signs in an interview that a developer is not competent?
My favorite excercise is to show them the source code for Apache Tomcat’s …
9
votes
C# is probably not the best choice for a security application?
“System-level” != “security”. Also, you can write insecure programs in any language.
…
0
votes
How to setup an Object Creation Interface “rule” in C#?
Maybe the factory pattern is what you’re looking for.
…
2
votes
Why are mutable structs evil?
It doesn’t have anything to do with structs (and not with C#, either) but in Java you might get problems with mutable objects when they are e.g. keys in a hash map. If you change them after adding …
0
votes
Where can I find a Java to C# converter?
There’s is only one tool that can do that, and it’s called Jon Skeet.
…
2
votes
1
vote
Does a cache need to synchronized?
As long as the cost for acquiring and releasing a lock is less than the cost for recreating the object (from a file or database or whatever) all accesses to a cache should indeed be synchronized. I …
2
votes
Hacking your own application
Apart from all the obvious answers to prevent buffer overflows, code injection, session highjacking et. al. you should find somebody else to check your code/software because you can only think abou …
0
votes
Hide c# windows application source code
As soon as people get a hand on your binaries they can reverse-engineer it. It’s easier with languages that are compiled to bytecode (C# and Java) and it’s harder with languages that are compiled t …
-1
votes
0
votes
How does “static reflection” work in java? (ex. in mockito or easymock)
I’ve never worked with mockito or easymock but I don’t think the call does what you think it does. It does not interpret mockedList.get(0) in any special way. The method get …
