in a C# assembly, can we have a file for example File1.cs that is in the same namespace as that assembly but it does Not have a class? so for example something like this:
namespace something.otherthing
{
public enum E1
{ ..... }
public enum E2
{ ... }
}
I think this should be Wrong? but we could do that in VB 6.0 but in C# every thing should be a class. wanted to make sure .