.NET news » C# C# Rss Feed

download
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#
What's New in C# 3.0? Part 1
With the release of Visual Studio 2008, Microsoft has updated the C# language to its latest version, 3.0. C# 3.0, contains several key language enhancements that support the recently-announced Language Integrated Query (LINQ) feature. This article, the first of a two-part series, will walk you through each of these new, time-saving language enhancements and provide a couple of code examples illustrating how to use them.
24 Jan 2008, 23:34:57   Source: What's New in C# 3.0? Part 1   Tags: C#
C# Indexers
The thirteenth part of the C# Object-Oriented Programming tutorial describes the use of indexers. A class that has an indexer can be used in a similar manner to an array. Objects of the class can use array-style notation to present multiple values.
18 Jan 2008, 01:48:31   Source: C# Indexers   Tags: C#
C# Relational Operator Overloading
The eleventh article in the C# Object-Oriented Programming tutorial furthers the investigation of operator overloading. This time the overloading of the relational operators is described, allowing custom classes to be included in comparison operations.
18 Jan 2008, 01:48:31   Source: C# Relational Operator Overloading   Tags: C#
Casting and passing anonymous types
C# 3.0: how to pass an anonymous types, and how to cast them.
17 Jan 2008, 09:34:00   Source: Casting and passing anonymous types   Tags: C#
C# 3.0 Syntax Additions-Design Guidelines
C# 3.0 includes a few syntactical additions to the language. For the most part, Microsoft added these language additions to support Language Integrated Query (LINQ). These features include (but are not limited to) lambda expressions, extensions methods, anonymous types, implicitly typed local variables, automatic properties, and object initializers.
27 Dec 2007, 18:00:00   Source: C# 3.0 Syntax Additions-Design Guidelines   Tags: C#
Immutability in C#: Kinds of Immutability
Eric Lippert argues that Immutable Objects are the future of C#. Here he offers directions that C# could go to improve the developer experience when writing programs that use immutable objects.
11 Dec 2007, 12:38:26   Source: Immutability in C#: Kinds of Immutability   Tags: C#
Overloading True and False in C#
The ninth article in the C# Object-Oriented Programming tutorial continues the discussion of operator overloading. In this article, the overloading of the true and false operators is described, allowing an object to be used in conditional processing.
24 Nov 2007, 09:51:51   Source: Overloading True and False in C#   Tags: C#