+ 1
What is the system?
What is the system keyword in case java, C# and VB.NET
1 Answer
+ 2
in the case of C# you are accessing the system namespace. This allows you to use objects that are in the System namespace.
the following will allow you to use the Console.WriteLine method without having to call the Console namespace:
using System.Console*;