C# Programming Tutorials
Posted on
September 26th, 2008 0 Comments
An exception usually signals an error. Thought it doesn’t always indicate an eror, it can also signal some particularly unusual even in your program that deserves special attention.
Exception & Errors Handling
No mater how good our program is, it always have to be able to handle possible errors. Most applications today contain some form of error handling....
Read More |
Make a Comment
Posted on
September 24th, 2008 0 Comments
Every application begins with a namespace in C# .NET that has the same name as the project. Of course, you can change the namespace to anything you like in order to maintain compatibility with other projects.
For example we declared namespace Mycplus.CSharpBasics while taking an Overview of C#. We can write the whole application with in one namespace or we can...
Read More |
Make a Comment
Posted on
September 23rd, 2008 2 Comments
The real nuts and bolts of a programming languages is that which controls the flow of a program called statements.
Types of Statements in C#
C# borrows most of its statements directly from C and C++, though there are some noteworthy additions and modifications.
Expression & Control statements
Labeled & goto statements
Control statements allow to branch...
Read More |
Make a Comment
Posted on
September 22nd, 2008 0 Comments
Here we will see the data types available in C#. Before examining the data types in C#, first we will try to understand the C# have two categories of data types.
Value types
Reference types
Value type data type is that which stores the value directly in the memory. Its just like int, float and double. But reference types variables only store the reference of...
Read More |
Make a Comment
Posted on
September 21st, 2008 0 Comments
Let’s begin by looking at the structure of a C# application. Every C# application contains certain elements. The application begins with the hierarchical levels, listed here in order of appearance.
Namespace
Class
Method
Every application begins with a namespace that has the same name as the project. Of course, you can change the namespace to anything...
Read More |
Make a Comment
Posted on
September 20th, 2008 1 Comment
C# is a new programming language specifically designed for Microsoft .NET Framework. C# is significant in two respects.
It is specifically designed for use with Microsoft’s .NET Framework.
It is based on modern Object Oriented Design methodology.
An Overview C# and the .NET Platform
C# and the .NET Platform are closely coupled. In fact, every application...
Read More |
Make a Comment
Posted on
September 20th, 2008 5 Comments
The Microsoft .NET Framework, more commonly known as simply the .NET Framework, is a software development platform created by Microsoft. The .NET Framework is now in version 2.0, which was released in October of 2005 and is the successor to two major previous versions: 1.0 and 1.1. .NET is a Microsoft technology that allows cross-language development and provides...
Read More |
Make a Comment