.NET news » C# C# Rss Feed

C# Checked and Unchecked Arithmetic

Arithmetic operations are limited to some extent by the type of variable being acted upon. In some cases, values can exceed their data type limits and provide incorrect, and potentially dangerous answers. This is prevented by using checked arithmetic.
25 May 2008, 10:09:23   Source: C# Checked and Unchecked Arithmetic   Tags: C#

Permutations, Combinations and Variations using C# Generics

Discusses the six major types of combinatorial collections with examples and formulas for counting. Expands with a C# generics-based set of classes for enumerating each meta-collection.
23 May 2008, 21:36:00   Source: Permutations, Combinations and Variations using C# Generics   Tags: C#

A Generic Searchable Range Collection

When developing networked applications that rely on a remote computer being available, it is important to be able to check that the other system is operable. Using the .NET framework's Ping class, an ICMP echo request can be sent for this purpose.
15 Mar 2008, 17:32:38   Source: A Generic Searchable Range Collection   Tags: C#

C# Inheritance

The eighteenth part of the C# Object-Oriented Programming tutorial begins the discussion of the use of inheritance. This is a powerful object-oriented concept that permits the creation of hierarchical groups of classes that share common functionality.
15 Mar 2008, 17:32:38   Source: C# Inheritance   Tags: C#

LINQ to Life

Using LINQ to improve everyday code
6 Mar 2008, 09:03:00   Source: LINQ to Life   Tags: C#

New C# 3.0 Language Features

Learn about some of the new features in C# 3.0 including automatic properties, collection initializers, extension methods, lambda expressions and anonymous types.
28 Feb 2008, 14:16:00   Source: New C# 3.0 Language Features   Tags: C#

C# 3.0 Syntax Additions - Design Guidelines

These guidelines will help you understand new additions to C# 3.0 syntax and avoid some of the pitfalls you can encounter when using them.
11 Feb 2008, 16:02:11   Source: C# 3.0 Syntax Additions - Design Guidelines   Tags: C#

C# Events

The fifteenth part of the C# Object-Oriented Programming tutorial explains the use of events. Events can be added to a class to allow it to indicate when a specific action has occurred or is about to occur. Subscribers may then react to the event.
5 Feb 2008, 14:48:39   Source: C# Events   Tags: C#

What's New in C# 3.0? Part 2

The release of Visual Studio 2008 updates C# to version, 3.0, with several key language enhancements and LINQ support. Part Two of this series will walk you through C#'s new LINQ support features and other time-saving enhancements.
30 Jan 2008, 00:09:58   Source: What's New in C# 3.0? Part 2   Tags: C#

C# Delegates

The fourteenth part of the C# Object-Oriented Programming tutorial explains how to add delegates to classes and programs. Delegates are used to provide references to methods that may be altered at run-time. They are also essential when creating events.
27 Jan 2008, 15:53:04   Source: C# Delegates   Tags: C#