.NET news » C# C# Rss Feed

download
Dynamic Action Dispatcher or Dynamic Visitor
This article demonstrates how to use code generation at runtime to allow dynamic dispatch of method calls
26 Oct 2006, 06:03:00   Source: Dynamic Action Dispatcher or Dynamic Visitor   Tags: C#
A Deque Class in C#
A class that implements the deque data structure in C#.
16 Oct 2006, 13:31:00   Source: A Deque Class in C#   Tags: C#
.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