You are on page 1of 14

.

NET
M A R C O G A LV E Z
INTRODUCTION TO .NET
. NET
. NET

• Presented in 2002
• Interoperability with existing code
• Support for numerous programming languages:
• C#, Visual Basic, F#, and so on).
. NET

• A common runtime engine shared by all .NET-aware


languages.
• Language integration
• A comprehensive base class library
• types that allow you to build code libraries
• A simplified deployment model
. NET
BUILDING C#
APPLICATIONS
INSTALL VISUAL STUDIO
INSTALL VISUAL STUDIO

• .NET desktop development


• ASP.NET and web development
• Data storage and processing
• .NET Core cross-platform development
INSTALL VISUAL STUDIO
static void Main(string[] args)

{
// Set up Console UI (CUI)

Console.Title = "My Rocking App";


Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.Blue;

Console.WriteLine("*************************************");
Console.WriteLine("***** Welcome to My Rocking App *****");
Console.WriteLine("*************************************");
Console.BackgroundColor = ConsoleColor.Black;
// Wait for Enter key to be pressed.

Console.ReadLine();

You might also like