As far as I know, to access any function, method or member of a class, we need to use its corresponding object, but in C#, we generally use a class Console without any object to access its functions like:
Console.WriteLine();
So, what is the reason for this. I am pretty confused about the direct use of the Console class without any object. Please, if anybody can help, solve this dilemma for me.