Getting Started with C # - Basic knowledge

A, C # basic knowledge

  1.1. The distinction between .net and C #

    .net: generally refers to the framework .Net Framework is a platform developed by Microsoft.

    • Code library
    • It defines the basic types, also known as the Common Type System (Common Type System, CTS)
    • .Net contains common language runtime (Common Language Runtime, CLR)

    C #: is running on the .NET CLR, fully object-oriented language (oop)

  1.2. Introduction to Common Integrated Development Environment (IDE)

    IDE (integrated Development, Integrated Development Environment)

    • Visual Studio   
    • Sharp Develop 

  1.3.Visual Studio program and each part of the initial velocity

    To restore the default window layout menu bar -> Window -> Reset Window Layout

  The process of writing applications 1.4.Net Framework

    Pretreatment -> Compiler -> Assembler -> connection

     -E     -S        -c      -o

  1.5. Console program

    Print: cw -> tab * 2

  1.6. Desktop Applications

    WPF and WindowsForms

    WPF is designed to replace WindowsForms

    InitializeComponent () form initialization

 

- I want this blog based on self-study network

Guess you like

Origin www.cnblogs.com/Just-a-calm-programmer/p/12457305.html