.NET news » C# C# Rss Feed

Professional C# 4.0 and .NET 4 (Wrox Programmer to Programmer)
Authors: Christian Nagel, Bill Evjen, Jay Glynn, Karli Watson, Morgan Skinner
Average rating: 4.0 / 8
(8 reviews)
More .NET C# books
download

.NET Matters: Event Accessors

Creating events on classes by adding the event keyword to a delegate member variable declaration.
11 Oct 2006, 19:00:00   Source: .NET Matters: Event Accessors   Tags: C#

C# 2.0 Iterators

Iterators provide a simpler way to create classes that can be used with the foreach statement without implementing the IEnumerable and IEnumerator interfaces.
11 Oct 2006, 08:27:07   Source: C# 2.0 Iterators   Tags: C#

A class to dynamically create delegates of functions at runtime

A class to dynamically create delegates of functions at runtime. Wraps code by Luyan, from his article: A General Fast Method Invoker.
6 Oct 2006, 15:25:00   Source: A class to dynamically create delegates of functions at...   Tags: C#

Asynchronous Code Blocks

A C# 2.0 library for executing parts of a method code asynchronously using Anonymous Methods and ManagedIOCP.
3 Oct 2006, 11:46:00   Source: Asynchronous Code Blocks   Tags: C# Components

Static Keyword Demystified

This article aims to clear the confusion regarding the use of the static keyword in C#.
29 Sep 2006, 12:20:00   Source: Static Keyword Demystified   Tags: C#

How to Use Settings in Visual C# 2005

Learn the difference between application and user settings, how to create new settings at design time, how to access settings at runtime, and how to incorporate multiple sets of settings into your C# application.
28 Sep 2006, 19:17:11   Source: How to Use Settings in Visual C# 2005   Tags: C#

Generic InvocationHelper

A generic class for providing thread-safe invocation of delegates. Can be used for (but not limited to) updating GUI elements from another thread.
27 Sep 2006, 19:38:00   Source: Generic InvocationHelper   Tags: C#

How to write a Memory Scanner using C#

Search a processe's memory to find specified 16, 32 or 64 bit data values.
23 Sep 2006, 18:05:00   Source: How to write a Memory Scanner using C#   Tags: C# Examples

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#