Features of .NET......
Now that we know some basics of .NET, let us see what makes .NET a wonderful platform for developing modern applications. •...
The .NET Class Framework......
The next layer up in the framework is called the .NET Class Framework also referred as .NET base class library. The .NET...
The .NET Class Framework......
The next layer up in the framework is called the .NET Class Framework also referred as .NET base class library. The .NET...
Microsoft Intermediate Language (MSIL)
When compiling to managed code, the compiler translates your source code into Microsoft intermediate language (MSIL), which is a CPU-independent set of...
First VB.NET Program
To start of with any language it’s always worth writing a simple program, which actually does nothing but displays a “HelloWorld” string in...
First C#.NET Program
/* This is the famous helloworld program written using C#.NET */ /* Indicates that the code is referring System Namespace to access the...
JIT (Just–in-Time Compiler) & Debugging
The .NET Runtime ships with a Just-In-Time (JIT or JITter) compiler, which will convert the MSIL code in to the native code...
History of C#
.NET framework offers a myriad of languages which puts us programmers into a deep thought process about which programming language best suits...
Language Fundamentals in C#
Constants & Variables A variable is a named memory location. They are programming elements that can change during program execution. Data that...
Overriding
Class inheritance causes the methods and properties present in the base class also to be derived into the derived class. A situation...
Enumerations
Enumerations are types that inherit from System.Enum. The elements of an enumeration are expressed in words rather than numbers, which makes it...
Control Statements
C# has statements such as if ….. else ….. and switch…case which help you to conditionally execute program. C# provides you with...
History of VB.NET
.NET framework offers a myriad of languages which puts us programmers into a deep thought process about which programming language best suits...
Treeview Binding in VB.NET
Private Sub PopulateRootLevel() treeClient.Nodes.Clear() Dim stBuild As New StringBuilder() stBuild.Append("select...
Language Fundamentals in VB.NET
Constants &Variables A variable is a named memory location. They are programming elements that can change during program execution. Data that needs...
Overloading and Overriding of the Class
Overloading provides the ability to create multiple methods or properties with the same name, but with different parameters lists. This is a...
Mail Sending in VB.NET
This summary is not available. Please click here to view the post. ...
Properties
Properties are named members of classes, structs, and interfaces. They provide a flexible mechanism to read, write, or compute the values of...
Structures
A structure allows you to create your own custom data types and it contains one or more members that can be of...