.NET news » C# C# Rss Feed

download
Clipboard backup in C#
Backing up the clipboard using C# and Windows API calls to avoid C#'s limits on clipboard management.
20 Sep 2006, 13:36:00   Source: Clipboard backup in C#   Tags: Examples C#
Idea of the Clean Result (concept of the monolithic/non-monolithic code) or alternative to Java's checked exceptions
This is a continuation of the article The Back Side of Exceptions (.NET - General, .NET subsection). Here you'll find an abstract solution of very important problem of unexpected exceptions.
15 Sep 2006, 11:07:00   Source: Idea of the Clean Result (concept of the...   Tags: C#
A Worker Thread Class For Processing Work Units
Processing work units in a single thread instead of using a thread pool.
13 Sep 2006, 09:59:00   Source: A Worker Thread Class For Processing Work Units   Tags: C#
3-tier Architecture with ASP.NET 2.0: Tutorial 6: Programmatically Setting the ObjectDataSource's Parameter Values (Visual C#)
While the ObjectDataSource's parameters' values can typically be set declaratively, without requiring a line of code, it's easy to set the parameter values programmatically. This tutorial concludes the Basic Reporting section.
11 Sep 2006, 18:47:24   Source: 3-tier Architecture with ASP.NET 2.0: Tutorial 6:...   Tags: ASP.NET C#
3-tier Architecture with ASP.NET 2.0: Tutorial 5: Declarative Parameters (Visual C#)
In order to use methods with input parameters, we need to specify the values for the parameters in the ObjectDataSource's SelectParameters collection. Different types of parameters allow for the parameter value to be obtained from different sources.
11 Sep 2006, 18:12:02   Source: 3-tier Architecture with ASP.NET 2.0: Tutorial 5:...   Tags: ASP.NET C#
Quick and Dirty Settings Persistence with XML
A quick and dirty use of an XML file to save program settings between application execution sessions.
9 Sep 2006, 07:33:00   Source: Quick and Dirty Settings Persistence with XML   Tags: C# Components XML
Implementing IDisposable and the Dispose Pattern Properly
Explains how to properly implement the IDisposable interface, the Dispose pattern, and deterministic finalization.
2 Sep 2006, 01:43:00   Source: Implementing IDisposable and the Dispose Pattern Properly   Tags: C#
Load and save objects to XML using serialization
A C# program to demonstrate loading and saving an object to an XML file using XML serialization encapsulated in a wrapper class.
1 Sep 2006, 11:03:00   Source: Load and save objects to XML using serialization   Tags: C# Examples XML
Cabinet File (*.CAB) Compression and Extraction
How to implement creation and extration of MS CAB files.
29 Aug 2006, 15:35:00   Source: Cabinet File (*.CAB) Compression and Extraction   Tags: Examples C#
Generic Dictionaries: Hidden Treasure of System.Collections.Generic
Generic dictionaries simplify common tasks, such as coordinating selection between a TreeView and a ListView—but their capabilities extend far beyond that, once you realize you can use DynamicInvoke() to execute delegates stored in the dictionary.
17 Aug 2006, 20:30:41   Source: Generic Dictionaries: Hidden Treasure of...   Tags: C#