C# Object InitializerC# 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 ExampleOutput: 101 Rahul [email protected] C# Collection InitializerCollection Initializer allows us to initialize a collection type that implements IEnumerable interface. The following example implements collection initializer. C# Collection Initializer ExampleOutput: 101 Rahul [email protected] 102 Peter [email protected] 103 Irfan [email protected] Next TopicC# Auto Implemented Properties |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India