C# Tutorial
1) What is C#(C-Sharp)?
C# is defined as an Object oriented programming language from Microsoft for designed to work with Microsoft's .Net Framework platform. DotNET platform and designed for improving productivity in the development of Web applications and Windows applications.C# is based on C++. Then contains features similar to those of Java Program.
2) How to start C#?
Syntex:
=====
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
Facebook Comment