RE: Thread-safe Format
Oh, the joy of writing multiple threaded applications. I like this little tip that will keep string formatting calls from stepping over each other.
Oh, the joy of writing multiple threaded applications. I like this little tip that will keep string formatting calls from stepping over each other.
Sahil has a good post that explains why you should use StringBuilder to concatenate strings instead of just doing “string a” + “string b”
I’ve always wanted to maintain one of these, but don’t have the time… this one looks great though. http://shsc.info/UsefulWindowsSoftware
Here’s a handy link to formatting strings in C#, courtesy of Steve Tibbett’s blog.
Here’s a cool site that has a lot of reference information for Delphi.