Phemmy Google Search

Saturday, August 2, 2008

Kind of Application you can Design with C#

C# uses the Framework and so also has no restrictions on possible applications. However, here are a few of the more common application types:


Windows Applications: These are applications, such as Microsoft Office, which have a familiar Windows look and feel about them. This is made simple by using the Windows Forms module of the .NET Framework, which is a library of controls (such as buttons, toolbars, menus, and so on) that you can use to build a Windows user interface (UI).

Web Applications: These are Web pages such as might be viewed through any Web browser. the .NET Framework includes a powerful system of generating Web content dynamically, allowing personalization, security, and much more. This system is called ASP.NET (Active Server Pages .NET), and you can use C# to create ASP.NET applications using Web Forms.

Web Services: These are a new and exciting way of creating versatile distributed applications. Using Web services you can exchange virtually any data over the Internet, using the same simple syntax regardless of the language used to create a Web service or the system that it resides on.

Any of these types may also require some form of database access, which can be achieved using the ADO.NET (Active Data Objects .NET) section of the .NET Framework. Many other resources can be drawn on, such as tools for creating networking components, outputting graphics, performing complex mathematical tasks, and so on.

Olufemi

No comments: