List/Grid

Visual Studio Tutorials Subscribe to Visual Studio Tutorials

Property in C# class

Property in C# class

How do you access member variables of any class from outside the class ? In most of the languages including C++ , you will make the member variables public so … Read more »

Classes and Object Model in .NET

Classes and Object Model in .NET

Classes and Object model in .NET
We will start with an introduction to what is object oriented programming, how to write simple classes, creating objects etc.
What is a ‘class’ ?
In … Read more »

Data Types in C#

Data Types in C#

Datatypes in C# and .NET
DataTypes are the basic building block of any language. Microsoft has tried to standardise the datatypes in .NET framework by introducing a limited, fixed set of … Read more »

C# Language Syntax

C# Language Syntax

This article will show you the basic statements in C# language and language syntax.
Declaring Variables

The following sample shows different ways you can declare a variable:
int a;
int salary, incomeTax, sum;
int … Read more »

What is Visual Studio.NET ?

What is Visual Studio.NET ?

Many people always get confused with Visual Studio .NET (VS.NET) and .NET technology. VS.NET is just an editor, provided by Microsoft to help developers write .NET programs easily … Read more »