How to: Define a Class in VB.NET

Class is an abstract representation of an entity. The object is a concrete manifestation of a class. The object is the structure that contains data and methods of handling data. An object contains data through fields and properties:

Read More →
How to: Define and Access a Variable in VB.NET

A variable corresponds to a location of memory, which stores values when performing calculations.Variables are used in calculations, comparisons. They have established a name in the source program, and accessing the value stored in memory location is achieved by variable name. In VB.NET, a variable has an associated data type […], without being required to […]

Read More →