In C# the “new” keyword can
be used in 3 different ways, as operator, modifier and constraint. We all are familiar
with new operator usage, i.e. for creating
object and invoking constructor. But
other two usages are not much popular in normal coding.
“new” Operator
It is used for instantiating...