Coder Social home page Coder Social logo

visualstudioeducation's Introduction

Getting started with Microsoft Visual Studio 2017+ and C#

The intent for this repository is to introduce seasoned developers in any major language such as JavaScript, Cold Fusion or Visual Basic to the following.

  • C# programming language basics.
  • Navigating Visual Studio's IDE.

Good links to get started with

By following what is presented will assist developers when training becomes available here by a vendor.

C# 7 (or higher) programming language

While working with code many of the code samples will show old school methods to accomplish a task then a secondary example will show current conventions while discussing alternates hybrid solutions. Alternate and hybrid solutions are intermediate level ways to complete a task, which in many cases does not hinder performance.

Example: The task is to display a person's first and last name.

static void OldSchool()
{
    string firstName = "Karen";
    string lastName = "Payne";

    Console.WriteLine(firstName + " " + lastName);
}

The above code block works but there is a best practice for writing this today.

var firstName = "Karen";
var lastName = "Payne";

Console.WriteLine($"{firstName} {lastName}");

Visual Studio

"How to" in Visual Studio will be broken down into separate pages within this repository to perform common task.

C# Basics

The following section provides basics for getting started with C# programming language.

visualstudioeducation's People

Contributors

karenpayneoregon avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.