Do you need to know when a file or directory has been updated? The FileSystemWatcher class gives you a very easy means to monitor the file system.
Articles Written by Jay Miller
.NET Tip: Return File Contents as a String
What do you do when you need to read in an entire file and process it as a string? Here is a simple solution.
.NET Tip: Creating a Thread-Safe Singleton
The singleton pattern can be used in a wide variety of situations. This tip will show you how to create a thread-safe version of a singleton.
.NET Tip: Converting Strings to Enum Values
Learn how to take a string and convert it into an enumeration value.
.NET Tip: Filling Lists with Enums
Most applications developers build have lists or dropdowns that need to be filled with values for the user to select. This tip will show you how to use an enumeration to populate your lists.
.NET Tip: Using Extension Methods
Extension methods allow you to create utility functions and have them appear to be part or your classes or the built-in classes. You'll learn by making a method from an earlier tip available as an extension method.
