Identity Interface header image

Posts from ‘September, 2007’

C# 2.0 Language Features — Brown Bag Lunch Transcript

Download Example Code

Introduction

What will be covered

A lot of language features were introduced in the C# 2.0.

Partial Classes

Generics

Static classes

New Iterator and the Yield Statement

Covariance and Contravariance for signatures of delegates.

Accesibility of property accessors can be set independently.

Nullable value types

I will be covering

Generics

Delegates

Iterators and Yield Statement

Generics

Generics allow you to create type safe data structures without committing to [...]