Skip to content

namespace

A namespace is a logical unit of organization. There are namespaces that are built in to the .NET Framework, and ones you can make yourself. The .NET Framework classes are organized in namespaces. For example, the common method of writing to the console window is with Console.WriteLine("");. Console.WriteLine("Message"); Using Console.WriteLine(""); requires a using directive at ...continue reading "C# Namespaces"