January 2004 Entries
http://www.opengroup.org/on
If you want to write methods that are only available with conditional compiler arguments you can use an attribute just for that purpose:[Conditional("DEBUG")] Private void MyMethod() {}...
One of the most interesting changes in the Whidbey's Cache object is that it now supports custom types of cache dependencies. In brief, a cache dependency represents a logical dependency between a cached item and a file(s), folder(s), or another cached item(s). When the dependency is broken (i.e., the file/folder/item changes), the bound cached item is removed from the cache.CacheDependency dep = new CacheDependency(fileName, dateTime);cache.Insert(key, value, dep); In ASP.NET 1.1, the CacheDependency...