C#Programing
C#Programing
Introduction:
C# was developed by Anders Hejlsberg and his team during the development of .Net
Framework.
3. Standard Library
4. Assembly Versioning
7. Easy-To-Use-Generics
8. Indexes
9. Conditional Computation
The .Net framework is a revolutionary platform that helps you to write the following types
of applications −
• Windows applications
• Web applications
• Web services
The .Net framework consists of an enormous library of codes used by the client
languages such as C#. Following are some of the components of the .Net framework −
• Windows Forms
fi
ff
• ADO.Net
• LINQ
Coding In C#
• Namespace declaration
• A class
• Class methods
• Class attributes
• A Main method
• Comments
Example:
using System;
namespace HelloWorldApplication {
class HelloWorld {
/* my rst program in C# */
Console.WriteLine("Hello World");
Console.ReadKey();
}
fi
fl