Sunday, October 9, 2011

c# chapter-2 Dot net Applications

.NET can be used to creating different type of application. Also a .NET solution can consists of projects written in different languages. For example a vb.net project  can contain a data access component written in c#. This is possible because of interoperability of .NET between projects.
 Console applications
Console applications means graphics less applications. Only character will be present. The following statement is the entry point of console applications.
Public static void Main(String args)
The project uses Read,ReadLine, Write,WriteLine methods present in the system.console class.
Windows applications.
Example for windows application is ms-word. Normally it contain graphics as icon. We may run any commands by just clicking on the icon..Net can be used for creating such applications.
Windows controls
A windows controls can be created using base controls in toolbox. If you have studied active x control creating using vb6 or vc++ it will be very useful to start learning on creating windows controls in .net.
Web projects
Web sites can be created using asp.net the server side asp.net engine will convert the asp.net codes in to pure html codes. The browser will execute the html code and display  website.Asp.net is used to create interactive, dynamic web sites.
Web services
The web services provide information to other web sites. For examples a website can get informations such as climate, business news from webservices. The main aim of the .Net is providing the software as services.

No comments:

Post a Comment