-
Recent Posts
- How do I map a differential/transaction log backup to its full backup without using MSDB?
- Change Data Capture gets disabled when you break mirroring and bring the database online
- Change Data Capture gets disabled when you break mirroring and bring the database online
- Do NOT delete files from the Windows Installer folder
- How to monitor deadlock using extended events in SQL Server 2008 and later
-
Recent Comments
- Dave on How to Point a Domain to an Amazon EC2 Virtual Server
- David Ziffer on Programming Language | .NET Multiple Inheritance Issue
- Ashok on SAP HR Certifications Sample Questions Set 4
- Brad on JetBrains Rolls Out Competitor For Objective C Development
- Danny on Getting Started (for Free!) with Amazon Elastic Cloud Computing (EC2)
Monthly Archives: March 2006
How do I play default Windows sounds?
Sometimes, you might want to make your application a bit more audible. If you are using .NET 2.0, you can utilize the new System.Media namespace and its SystemSound and SystemSounds classes.
The SystemSounds class contains five static properties that y…
How can I easily log a message to a file for debugging purposes?
Often, you need a way to monitor your applications once they are running on the server or even at the customer site — away from your Visual Studio debugger. In those situations, it is often helpful to have a simple routine that you can use to log mess…
Continue Reading: How can I easily log a message to a file for debugging purposes? →
How can I speed up hashtable lookups with struct object as keys?
When you have struct objects as the key in a hashtable, the lookup operation of the hashtable performs miserably. This can be attributes to the GetHashCode() function which is used internally to do the lookup.
If a struct contains only simple value t…
Continue Reading: How can I speed up hashtable lookups with struct object as keys? →