Web
Analytics
Asp .net MVC | Angular | ASP.NET Tutorials

For Consultation : +91 9887575540

Stay Connected :

Delegates in C#

Delegate : It is a reference type variable and holds reference to a method. At runtime method reference can be changed. Base Class: System.Delegate Declaration of delegate: delegate Example : public delegate int CalculateArea (string s); Call Delegate: Using Invoke...
Object and Collection Initilizers in C# 3.0

Object and Collection Initilizers in C# 3.0

New way of Object Initialization:           C# 3.0 introduces new way to initialize the objects. Object initialization is used to assign values to accessible fields of an object at the time of creation of Object without invoke the constructor. Old Approrach public...