Recent Posts

RE: Thread-safe Format

less than 1 minute read

Oh, the joy of writing multiple threaded applications. I like this little tip that will keep string formatting calls from stepping over each other.

RE: Strings are immutable

less than 1 minute read

Sahil has a good post that explains why you should use StringBuilder to concatenate strings instead of just doing “string a” + “string b”