Tuesday, 6 November 2012

Introduction About Visual Studio And Types Of Framework

Introduction About Visual Studio And Types Of Frameworks In .NET.Visual Studio is nothing but the Visual IDE(Integrated Devolopment Environment)which is needed to develoment of software applications with .NET Framework.
The IDE Integrates 3 features like
  1.  Editor
  2.  Compiler(for Compilation)
  3.  Interpreter(for running application)
By using Visual Studio IDE we develop the applications by using different Languages and Technologies like C#.NET,VB.NET, etc..ASP.NET,ADO.NET etc.Console application with visual studio show below: before developing a application we have to install the Visual Studio IDE tool,Where the .NET Framework based applications are developed.After installing the Visual Studio we start the developing the application in the .NET.Here we develop the Application in C#.NET with the type of Console application see below.”using” is the keyword to inherites the NameSpaces of Base Class Libraries to our Program 
Example program:
Using system; namespace Consolapp1 { Class prog { Static void Main(String args[]) { Console.WriteLine("WELCOME TO .NET FRAMEWORK"); } Console.ReadKey(); } }

.Basically .NET is not a Error free language.so writing the programming in .NET to fallow the Rules and Conditions.Types of Frameworks in .NET :Basically Frameworks in .NET are 3 different types they are as below.
  1. .NET Framework 
  2. .NET MonoFramework 
  3. .NET Compact Framework
1).NET Framework: This is general version required to run .NET applications on Windows operating system
2) .NET Mono Framework:This required to run .NET application in other Operating System like UNIX,LINUX,Solaries etc.
3).NET Compact Framework:This is required to run .NET application on other devices like PDA’s(Personal Digital Asists),Mobile Phones and Smart Phones.
Inside the application in the Visual Studioexample shows by developing in the Windows Application.These application are designed similar to the windows operating system.It knows as GUI(Graphical user interface)application,it offers graphical features like MousePointr ,Color,fonts,buttons.see follow below process.
Goto start button->Programms->Microsoft Visual Studio 2010->NewProject->Select Language->Select Windows Form Appication Template in left side of the Visual Studio->Specifie the Name and Location Click ok button.It shows the windows form to develop.Here we implement the application.
Project hierarchies and ShortCuts in Visual Studio IDE for Developing a application
1)Solution Explorer:Goto Menubar->View->Goto Solution Explorer or (Control+Alt+l)
2)Add a New Form:Goto Solution Explorer->application right click->Add New Item-Select Window or Web Form click Add button.
3)Windows Controls:Every Windows form controls are designed to provide an application with input and output these are many controls provide in .NET the Visual representation of an application.

Get More Details Here