Hello,
I was doing some C# the other day..and I wanted to print something to the screen..
System.Console.Writeline(..)
now I get System is a namespace, but Console is a freaking class
how is it possible to access a method directly from a class name?
I was reading something that it is a static class but I don't fully understand..
but it woul make sense to me if this type of class can only contain methods but should be used to store data, unless the data is to detect success of operation..
can anyone clarify?
Thanks.