C# Getting StartedThis post starts us off with some background information about C#. The C# programming language was designed for […] December 29, 2018 in C# tagged C# Getting Started by Mike
C# Visual StudioWhen we write C# code, we use an integrated development environment (IDE). The first thing you want to […] May 21, 2018 in C# tagged visual studio / IDE / shortcut / hints / tips / tip / gem / gems / tricks / C# Getting Started by Mike
.NET IntroductionWhat is .NET? .NET is a framework created by Microsoft for developing applications. .NET can create many different […] April 3, 2016 in C# tagged code / clr / .NET / CLI / language / runtime / intermediate / C# Getting Started by Mike
C# .NET CoreThe .NET Framework was originally released in 2002. The .NET Framework was created principally for developing applications to […] December 29, 2018 in C# tagged core / C# Getting Started by Mike
C# Console Hello WorldThe best place to start learning C# is at the beginning using a very simple example. Here we […] December 29, 2018 in C# tagged C# Getting Started by Mike
C# IdentifiersIdentifiers are character strings used to name things such as variables, methods, parameters, and a host of other […] December 29, 2018 in C# tagged name / camel / keyword / pascal / snake / naming / identify / case / variable / identifier / C# Getting Started by Mike
C# StatementsThe statements in C# are similar to those of C and C++. A statement is a source code […] December 29, 2018 in C# tagged C# Getting Started by Mike
C# Numeric Format StringsStandard C# numeric format strings are used to format common numeric types. Microsoft has a web page on […] December 29, 2018 in C# tagged C# Getting Started by Mike
C# KeywordsKeywords are the character string tokens used to define the C# language. Keywords cannot be used as variable […] December 29, 2018 in C# tagged C# Getting Started by Mike
C# TypesWhen you write a C# program, you are writing a set of type declarations. What is a type? […] December 29, 2018 in C# tagged C# Getting Started by Mike