+ 1
New Keyword in C#
What does they new Keyword in C# ?
1 Answer
+ 1
//New keyword instantiates a type. It invokes the type's constructor (with a matching argument signature). The constructor returns a new instance of the specified type.
//For more information :)
https://www.dotnetperls.com/new