I'm relatively new to C#. In going through some online practice exercises for C# console apps, I came across something I found to be interesting. If I were asked to output a variable to the screen, I would simply use:
Console.Write(variable);
but when I look this up in various tutorials they say it should be written like this:
Console.Write("{0}", variable);
why is this different way listed as opposed to the way I would naturally do it?