.NET Tutorials For Beginners & Dummies Subscribe to .NET Tutorials For Beginners & Dummies
Namespaces in C# (ASP.NET)
A Namespace is a group of related classes. It is a good practice to group related classes into a namespace when you create a class library.
The main advantage of using … Read more
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
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#
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
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
“Hello World” Application
Here we will guide you through step by step process to create your first sample .NET application. All our sample code will be using C# syntax. Readers are suggested to … Read more
What is XML(Extensible Markup Language) ?
XML was designed to transport and store data.
HTML was designed to display data.
What You Should Already Know
Before you continue you should have a basic understanding of the following:
HTML
JavaScript
What is XML?
XML … Read more
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
What Is .NET ?
This chapter gives you an introduction to the .NET technology and explains what is .NET.
.NET is a major technology change for Microsoft and the software world. Just like … Read more