A namespace does not directly contain members such as fields or methods
Inside a namespace, the compiler only accepts classes, structs, unions, enums, interfaces, and delegates.
The following sample generates CS0116:
namespace x { int xx; // CS0116 }