default keyword in c#
The "Default" keyword in c# can be used in the following scenarios .
The main use of default comes in to picture when used in the generic code.
1. To return Type's Default Value
The Default returns the type's default value.
For the Integer , it returns 0 , for Boolean , Read More →
