Joe Mayo·Dec 10, 20247 Things About C#: MethodsLearn how to avoid code duplication and modularize code with C# Methods.
InSeven Things about C#byJoe Mayo·Sep 26, 20247 Things about C#: Switch StatementsIn an earlier article about If Statements, we covered the common scenario where you’ll need to run specified logic based on a unique…
InSeven Things about C#byJoe Mayo·Aug 15, 20237 Things about C#: OperatorsEvery programming language has operators — the syntax that transforms values from one form to another. Think math, comparison, and bitwise…
InSeven Things about C#byJoe Mayo·Aug 8, 20237 Things about C#: TypesA type is a name given to some container that holds data of a specific size and shape. e.g. an int is a type that holds an integer number…
InSeven Things about C#byJoe Mayo·Jul 11, 20237 Things about C#: LoopsIn all of the previous articles in this series, the apps ran one time and then stopped. This is okay if the program is designed to…
InSeven Things about C#byJoe Mayo·Jul 4, 20237 Things about C#: If StatementsBranching is intrinsic to all of the work we do every day as developers. We need to evaluate a condition and determine what logic to run…
InSeven Things about C#byJoe Mayo·Jun 27, 20237 Things about C#: Console I/OThe console is the command line, where you type commands to run code and get a response. In general terms, input and output (I/O) describe…A response icon1A response icon1
InSeven Things about C#byJoe Mayo·Jun 20, 20237 Things about C#: Running AppsCopying code from a tutorial and understanding what that code means is generally straight forward. However, just knowing a programming…
InSeven Things about C#byJoe Mayo·Dec 10, 20247 Things about C#: IntroductionThis is the beginning of a new series of posts specially for new developers or those who are new to C#. I call it “7 Things about C#” where…
InSeven Things about C#byJoe Mayo·May 9, 20237 Things about C#: The PlatformC# runs on .NET, a cross-platform, managed, and open-source environment. The following 7 features give you an overview of this platform…A response icon1A response icon1