Home » C# Object and Collection Initializer

C# Object and Collection Initializer

by Online Tutorials Library

C# Object Initializer

C# Object Initializer is a new way to assign values at the time of object creation. It does not require constructor call to assign fields values. Object Initializer is enclosed in braces and values are separated by commas.

In the following example, we are using object initializer to assign values.


C# Object Initializer Example

Output:

101 Rahul [email protected] 

C# Collection Initializer

Collection Initializer allows us to initialize a collection type that implements IEnumerable interface. The following example implements collection initializer.


C# Collection Initializer Example

Output:

You may also like