This question already has an answer here:
I'm a little tired of the tutorials that tell us how to write code but do not breakdown into semi-retard language for us newbies.
Example:
Console.WriteLine(
@"Please explain to me why I would ever use `Console`;
give me a practicable eg. why I WOULD us the `.`, or why would I use `()`
after writing `WriteLine`");
or
string myString = // whatever comes after the `=`
Give me a piratical example as to when I would ever use this method.
In other words, is there something out there that will teach us how to write code by breaking down everything that we are writing and then give us a situation when this would be used and show us how to use it?
.
and()
because that's part of the syntax of the language. It's just something you have to use in order for the computer to know what it's supposed to do when it's executing your code. (or more accurately, in order for the compiler to know what to tell the computer to do when it's executing your code) – p.s.w.g Aug 11 at 2:25