An object is an instance of a class. It contains real values instead of variables.
Category: QA-C#
What is the use of the dispose method in C# ?
Dispose method are used for forcefully garbage collection to relase Unmannaged code
What is var keyword ?
variables that are declared at method scope can have an implicit type var. An implicitly typed local variable is strongly typed just as if you had declared the type yourself, but the compiler determines the type.