You are on page 1of 1

What is a Dynamic Data Type?

Visual C# 2010 introduces a new type, dynamic. The type is a static type, but an object o
similar to the var data type. The difference between var and dynamic is that the var is str
type) is type checked by the compiler only at runtime. After declaring a var data type, we

Anonymous methods in c#
Anonymous methods are methods without a Name.In versions of C# 1.0, the only way to
anonymous methods and in C# 3.0 and later, lambda expressions supersede anonymou

C# Lambda Expression
Lambda Expression concept was introduced in C# 3.0 . Lambda expression can be assu
methods can be written with C Sharp Lamda Expression.

Generic Types
Generics were added to version 2.0 of the C# language and the common language runti
serve as a placeholder for the actual type (the concrete type) that client code will provide
types. For example, the .NET Framework type System.Collections.Generic.List<T> has o
create an instance of the type, you specify the type of the objects that the list will contain

You might also like