•
Definition:Arithmetic Operations is just like it sounds, you can perform the operations on numerical values as well as numerical variables. Syntax:First, let’s see what it looks like when directly printing to console. Now let’s take a look at the Arithmetic Operations using and storing them in a variables. We can also declare two numbers…
•
Definition:Concatenation is the process of combining any and all of data types (strings, integers, doubles or floats, chars, a even a boolean). Syntax:Here is some examples of how concatenation works and when to use it: Homework:Heres a little homework that you can try on your own, try to complete it without looking for help,…
•
Ready to use method to extract only unique letters from a string. Instructions:To use the method – copy and paste it in your class, rename string variables and enter or pass a string you need to extract unique letters from.
•
Ready to use method to extract only unique numbers from a string. Instructions:To use the method – copy and paste it in your class, rename string variables and enter or pass a string you need to extract unique numbers from.
•
Ready to use method to extract only numbers from a string. Instructions:To use the method – copy and paste it in your class, rename string variables and enter or pass a string you need to extract numbers from.
•
Ready to use method to extract only letters from a string. Instructions:To use the method – copy and paste it in your class, rename string variables and enter or pass a string you need to extract letters from.
•
What is a String in C#? In C#, a string is a sequence of characters that represents text. The ‘string’ type is an alias for ‘System.String’, which is a part of the .NET framework. Strings in C# are immutable, meaning once a string object is created, it cannot be changed. Any modification to a…
•
Definition:In C#, Integer is a numerical data type which holds only whole numbers: 1, 2, 3, 4… etc. either positive or negative. Break it down to smaller pieces:int – is a variable type integer which holds only whole numbers. (integer will not accept decimal points)variableName – is the name you give to the variable.quotation marks ”…
•
Definition:In C#, Double and Float both are numerical data type which holds positive or negative with decimal points. Difference:Float – is suited for up to 7 decimal pointsDouble – is suited for up to 15 decimal points Let’s see an example:

•
Hi, my name it David, and I studied programming not too long ago and was always researching the easiest way to understand how programming language syntax works, definitions, and examples that are very similar across the board. So I decided to create my own website to teach programming to help others learn in a…