The .NET Framework class library is a library of classes, interfaces, and value types that are included in the Microsoft .NET Framework SDK. This library provides access to system functionality and is designed to be the foundation...
Visual Web Developer 2008 Express Edition has officially shipped, and is now available for immediate download. Here is a quick summary of some of the great new capabilities in this release.
Introduction In some cases you need to execute some external application from your own application. The common candidates for such task are: Running BCP in SQL Server Running batch scripts that automate...
In .NET the FileSystemWatcher class from System.IO namespace provides easy way to do the same thing. A windows file system has many events associated with files and folders. They include creation, renaming, deletion, change etc...
As you might be aware that .NET components are different than traditional COM components in terms of reference counting, memory management and registration. However, .NET provides a way to host your .NET components inside COM...
Serialization is a process of storing state of an object to some media like disk file or stream. .NET further provides a way to serialize objects in XML format. Thus objects can be converted into XML documents (serialization)...
In the .NET world it is the Assembly that provides such ‘bundled’ code reuse. Assemblies contain the code that is executed by the Common Language Runtime (CLR). Every .NET application consists of one or more assemblies...