Wednesday, April 24, 2024 11:27

Archive for January, 2017

Operators

Wednesday, January 4th, 2017

No, we’re not talking about the landline phone operators 🙂 . As you can imagine, storing data in variables is pointless if we are not manipulating and/or using that data. Even in the most simple programs, you will use mathematical operations like subtraction, addition, multiplication, division.… Read more

Escape sequences

Tuesday, January 3rd, 2017

There are times when you want to use special characters or strings that contain special characters, like new line. Obviously, just writing the line on a new line in your code will not do the trick. This is where escape sequences come in handy.… Read more

Value and reference types

Tuesday, January 3rd, 2017

Variables in C# can be categorized in two main types: value and reference types. What is the difference between them?

Value types are stored in a special area which is called the execution stack and their value is directly stored and accessed.… Read more


Follow the white rabbit