Getting Started with Microsoft Visual Studio,.NET and C# Jim Warren, COMPSCI 280 S2 2014 Enterprise Software Development.

Slides:



Advertisements
Similar presentations
Introduction to .NET Framework
Advertisements

Tahir Nawaz Introduction to.NET Framework. .NET – What Is It? Software platform Language neutral In other words:.NET is not a language (Runtime and a.
© by Pearson Education, Inc. All Rights Reserved.
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
.NET Framework Overview Pingping Ma Nov 16 th, 2006.
Introduction to the C# Programming Language for the VB Programmer.
Introducing the Common Language Runtime for.NET. The Common Language Runtime The Common Language Runtime (CLR) The Common Language Runtime (CLR) –Execution.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
Creating and Running Your First C# Program Svetlin Nakov Telerik Corporation
Tahir Nawaz Visual Programming C# Week 2. What is C#? C# (pronounced "C sharp") is an object- oriented language that is used to build applications for.
Object Oriented Software Development 1. Introduction to C# and Visual Studio.
From C++ to C#. Web programming The course is on web programming using ASP.Net and C# The course is on web programming using ASP.Net and C# ASP.Net is.
Intro to dot Net Dr. John Abraham UTPA – Fall 09 CSCI 3327.
Microsoft Visual Basic 2012 CHAPTER ONE Introduction to Visual Basic 2012 Programming.
Microsoft Visual Basic 2005 CHAPTER 1 Introduction to Visual Basic 2005 Programming.
Creating and Running Your First C# Program Telerik Software Academy Telerik School Academy.
Introduction 01_intro.ppt
A First Program Using C#
© 2004 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin Programming the Web Using ASP.Net Chapter 2: The ASP.Net Template Dave.
Architecture Of ASP.NET. What is ASP?  Server-side scripting technology.  Files containing HTML and scripting code.  Access via HTTP requests.  Scripting.
1 Introduction to.NET Framework. 2.NETFramework Internet COM+ Orchestration Orchestration Windows.NET Enterprise ServersBuildingBlockServices Visual Studio.NET.
M1G Introduction to Programming 2 4. Enhancing a class:Room.
Introduction to .Net Framework
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
1 8/29/05CS360 Windows Programming Professor Shereen Khoja.
Intro to C# Dr. John P. Abraham UTPA. Background required Thorough C++ programming – If you made an A in 1370/1170 you will do fine with some effort.
Module 1: Introduction to C# Module 2: Variables and Data Types
Session 1 - Introduction and Data Access Layer
Microsoft Visual Basic 2005: Reloaded Second Edition
Lecture Set 1 Part B: Understanding Visual Studio and.NET – Structure and Terminology 1/16/ :04 PM.
Creating and Running Your First C# Program Svetlin Nakov Telerik Corporation
Lesley Bross, August 29, 2010 ArcGIS 10 add-in glossary.
CSC 494/594 C# and ASP.NET Programming. C# 2012 C# Object-oriented language with syntax that is similar to Java.
ASP.NET Web Application and Development Digital Media Department Unit Credit Value : 4 Essential Learning time : 120 hours Digital.
Lecture 1 Programming in C# Introducing C# Writing a C# Program.
Computing with C# and the.NET Framework Chapter 1 An Introduction to Computing with C# ©2003, 2011 Art Gittleman.
E-Commerce: Introduction to Web Development 1 Dr. Lawrence West, Management Dept., University of Central Florida Topics What is a Web.
Web Programming: Client/Server Applications Server sends the web pages to the client. –built into Visual Studio for development purposes Client displays.
Getting Started with Microsoft Visual Studio,.NET and C# Jim Warren, COMPSCI 280 S Enterprise Software Development.
Lecture Set 2 Part B – Configuring Visual Studio; Configuration Options and The Help System (scan quickly for future reference)
Introduction to ASP.NET MVC Information for this presentation was taken from Pluralsight Building Applications with ASP.NET MVC 4.
CS 415 N-Tier Application Development By Umair Ashraf June 28,2013 National University of Computer and Emerging Sciences Lecture # 5 Microsoft MVC3 Architecture.
Lecture Set 1 Part C: Understanding Visual Studio and.NET – Applications, Solutions, Projects (no longer used – embedded in Lecture Set 2A)
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
Rajiv and Shipra Introduction to.NET (asp.net,c#,vb)
tom perkins1 XML Web Services -.NET FRAMEWORK – Part 1 CHAPTER 1.1 – 1.3.
Intro to dot Net Dr. John Abraham UTPA CSCI 3327.
PRIOR TO WEB SERVICES THE OTHER TECHNOLOGIES ARE:.
Microsoft .NET A platform that can be used for building and running windows and web applications such that the software is platform and device-independent.
Getting Started with.NET Getting Started with.NET/Lesson 1/Slide 1 of 31 Objectives In this lesson, you will learn to: *Identify the components of the.NET.
Object-Oriented Application Development Using VB.NET 1 Chapter 2 The Visual Studio.NET Development Environment.
The Execution System1. 2 Introduction Managed code and managed data qualify code or data that executes in cooperation with the execution engine The execution.
Text Introduction to.NET Framework. CONFIDENTIAL Agenda .NET Training – Purpose  What is.NET?  Why.NET?  Advantages  Architecture  Components: CLR,
Lecture Set 1 Part B: Understanding Visual Studio and.NET – Structure and Terminology 1/16/ :04 PM.
Microsoft Visual Basic 2015 CHAPTER ONE Introduction to Visual Basic 2015 Programming.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
A Detailed Introduction To Visual Studio.NET CRB Tech ReviewsCRB Tech Reviews introduces you to the world of Visual.
Diploma of Website Development Getting Started With ASP.NET
Introduction ITEC 420.
Introducing the Microsoft® .NET Framework
Chapter 2: The Visual Studio .NET Development Environment
Introduction to Visual Basic 2008 Programming
C# and the .NET Framework
Introduction to .NET Framework Ch2 – Deitel’s Book
Introduction to C# AKEEL AHMED.
.Net Framework Details Imran Rashid CTO at ManiWeber Technologies.
IS 135 Business Programming
Presentation transcript:

Getting Started with Microsoft Visual Studio,.NET and C# Jim Warren, COMPSCI 280 S Enterprise Software Development

Welcome (to this part of 280)!  Your lecturer: Jim Warren   x86422  Office: Tamaki  Office hours: by arrangement (try first, and we’ll start an FAQ for assignment 2)  These 3 weeks will provide you skills to create.NET MVC (model-view-controller) applications (a way of making websites) and to connect them to an underlying database  There’s a lab sheet for each week to walk through programming methods  The tutor will also reinforce the topics from lecture Handout 01COMPSCI 2802

Assignment 2  Create an MVC application  Handles viewing and updating of a database  Does database connection, query and update from C#  Creates HTML form interaction in the MVC framework  Includes validation of user input  Assignment spec on course website  Due noon Friday (before class!) on week 8 (26 th September)  Worth 5% of course mark  Do lab sheet 1 and then get into the assignment before the break! Handout 01COMPSCI 2803

Today’s learning objectives  To be introduced to the.NET framework, including Visual Studio and C#  To be able to describe characteristics of the Common Language Runtime  To be able to describe the general characteristics of the MVC paradigm and its rationale Handout 01COMPSCI 2804

Visual Studio (VS)  For Assignment 2, we will use Visual Studio to do our application programming  What is Visual Studio?  Visual Studio is an example of an "Integrated Development Environment" (IDE)  Think of an IDE as an application that combines code editor, compiler, debugging and other tools that make the design, maintenance, and documentation of large projects easier  Why an IDE?  Remember how our Java projects already consisted of multiple files for different classes?  This is characteristic for large projects  In MVC applications we’ll see that we have many types of files (for ‘M’, ‘V’, and ‘C’, and various aspects of the website template, system configuration and helper functions)  VS lets us manage these features and content in a convenient way Handout 015COMPSCI 280

Visual Studio and C#  Helpful background reading  Visual Studio from the Microsoft Developer Network (MSDN)  (and particularly the Application Development in Visual Studio link).  C# introduction   VS supports multiple languages (C#, C++, Visual Basic, J#) in the one IDE  All with nearly identical functionality and performance because the use a common core  VS produces many types of applications  ‘Console’ (processing with text interaction), Windows, Web, mobile  It can also integrate with Microsoft Office applications (Word, Excel, etc.) Handout 016COMPSCI 280

.NET Languages  All Visual Studio.NET languages are object-oriented  True inheritance and polymorphism are supported  No matter the language, all programs have a similar structure  Note that if you've done VB 6 in the past - the language has changed considerably!  C# (C-sharp) is relatively a new language  With syntax similar to C++, but also borrowing a lot of ideas from Java  Visual J# is also a new language  with syntax similar to Java  File structure is similar for all languages  Files are grouped into projects  All programs compiled into Common Intermediate Language (CIL)  Also known as Microsoft Intermediate Language (MSIL) Handout 017COMPSCI 280

The.NET Framework  The.NET Framework define the rules for language interoperability and how an application is compiled into executable code.  It is also responsible for managing the execution of an application created in any VS.NET language.  The.NET Framework has two main components: the common language runtime (CLR) and the.NET Framework class library.  CLR  Manages memory, thread execution, code execution, code safety verification, compilation, and other system services  Memory allocation, starting up and stopping processes  The.NET Framework class library  Provides developers with a unified, object-oriented, hierarchical and extensible set of class libraries (‘application programmer interfaces’, APIs) Handout 018COMPSCI 280

Execution Management  The managed execution process includes the following steps:  Choosing a compiler  Compiling, code -> CIL/MSIL  Compiling translates the source code into CIL and generates the required metadata (this package is an ‘assembly’ (e.g. a DLL is an assembly)  The format is similar to assembly language but is hardware independent  Compiling, CIL -> native code  A just-in-time (JIT) compiler translates the assembly into native code (or runs it in a virtual machine)  Conceptually, the process is similar to the Java Virtual Machine  Running code  The CLR provides the infrastructure that enables managed execution to take place as well as a variety of services that can be used during execution. Handout 01COMPSCI 2809 Source code Language Specific Compiler Language Specific Compiler EXE/DLL (CIL and metadata) CompilingRunning Engine JIT Compiler Native Code Execution

Garbage Collection  The CLR performs memory management  It manages the allocation and release of memory for an application  Automatic memory management can eliminate common problems,  such as forgetting to free an object and causing a memory leak, (common problems in C and C++ that lack garbage collection!) or  attempting to access memory for an object that has already been freed.  A contiguous area of memory allocated to a process is called the managed heap  Reference types are allocated from the managed heap  The CLR reclaims memory using the Garbage Collector (GC)  The GC examines variables to reclaim unused memory  It looks for memory without a corresponding variable (root) Handout 0110COMPSCI 280

Namespace  Physical assemblies are organized into logical components called namespaces  Namespaces are organized into a hierarchy  Microsoft has divided VS.NET into two primary namespaces:  The System namespace contains components developed by the.NET team  The Microsoft namespace contains components developed by Microsoft but outside of the.NET development team  Common Namespaces:  The ‘System’ namespace contains fundamental classes  System.Data namespace contains classes supplying data access capabilities  As compared to e.g. Microsoft.Media.AdaptiveStreaming Namespace (we’ll mostly use parts of the System namespace)  You’ll create namespaces for your own content (e.g. the data ‘model’ in your MVC application) Handout 0111COMPSCI 280

Creating a Console Application with VS  Open Visual Studio (note I’m using VS 2012 – a few features get added most years, but mostly it stays the same)  To create a new project called HelloWorldApp  Choose File->New Project  Select the project type: Visual C#  Select the project template: Console Application  Enter a name, Select a save Location and enter solution Name  Select Create directory for solution  Click OK – a program skeleton with a Main method that appears in the editor  Insert the following code:  Note:  The Main method is the entry point of your program, where the program control starts and ends  Insert Console.ReadLine() to the Main method which causes the program to pause until ENTER is pressed  To run your application  Press F5 to run the application, or  Click the ‘Start’ button (with the green triangle [‘play’] icon) Handout 03COMPSCI Console.WriteLine("Hello World"); Console.ReadLine(); You could also create a Windows Forms Applications and might use MessageBox.Show("Hello, world!");

The Model-View-Controller approach  MVC is an architectural pattern  Well, it’s ‘architectural’ when you make a project with directories for the 3 areas of concern; conceptually, it’s a design pattern  Separates responsibilities in the application  Model – the data (including the connection and mapping to the DBMS) and its integrity constraints (e.g. legal values of variables in terms of the domain logic)  View – the rendering. What it looks like to the user and the detail of how they interact with the application  Controller – Handles and responds to user interaction. Uses the model and selects the next view to offer the user. Handout 01COMPSCI See

An MVC Project in VS  Open VS  File/New Project… select Visual C# and the ASP.NET MVC 4 Web Application type*  Give it a name and location, press OK  Select the default ‘Internet Application’ template with the Razor view engine  Press OK and listen to the hard drive grind  Solution Explorer (righthand side of screen in IDE) produces folders for the Controllers, Models and Views (alphabetical order)  In this one I’ve added an additional C# class file (.cs) for entities in an employer database  The default template includes account management (login, new user) MVC elements Handout 01COMPSCI * I went with v4; 5 is out – there’s always something newer

MVC application from the template Handout 01COMPSCI Runs at ‘localhost’ served up by the built-in IIS Express local Web server

The Controller  The controller has a method of type ActionResult for each webpage in the solution  The ViewBag object is dynamic; shortcut for tossing data to the View  C# moment: note the “:” operator to indicate deriving a child class from a base class Handout 01COMPSCI using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace DefaultMVC.Controllers { public class HomeController : Controller { public ActionResult Index() { ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC application."; return View(); } public ActionResult About() { ViewBag.Message = "Your app description page."; return View(); }

The Model Handout 01COMPSCI using System.Data.Entity; using System.Globalization; using System.Web.Security; namespace DefaultMVC.Models { public class UsersContext : DbContext { public UsersContext() : base("DefaultConnection") { } public DbSet UserProfiles { get; set; } } [Table("UserProfile")] public class UserProfile { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int UserId { get; set; } public string UserName { get; set; } } Defines a database context (invoking the parent [base] class constructor to establish the database connection Creates model definition for a table in the database (autogenerated primary key and a username). The context’s DbSet is a collection of user profile objects

The View  One.cshtml (C# HTML) file for each page of the solution  Here we have the HTML for what the user sees on the index / home page  But it’s not just HTML Handout 01COMPSCI ViewBag.Title = "Home Page"; To learn more about ASP.NET MVC visit  indicates Razor Syntax markup that is converted at run-time into HTML  Can be a code block (essential C# syntax inside curly braces)  Or can be an expression  Can be cryptic featured is interpreted by expression in the autogenerated _Layout.cshtml file