Introduction of C#
It is a one part of .Net Framework. .Net is a software Framework developed by Microsoft. It runs only windows Platform. It support OOPS concept. Example : - using System; //include Namespace class Program { static void Main() //Main method { Console .WriteLine( "www.tutorialslife.com" ); //Output Code Console .ReadKey(); //waiting for input } } Output :- www.tutorialslife.com Namespace: It is a collection of class files. Above example mention " using System;" means it call system class. System is a predefined class in .Net.
0 Comments