System.CodeDom.Compiler.CodeValidator.ValidateNamespaceStart C# (CSharp) Method

ValidateNamespaceStart() private static method

private static ValidateNamespaceStart ( CodeNamespace e ) : void
e System.CodeDom.CodeNamespace
return void
        private static void ValidateNamespaceStart(CodeNamespace e) {
            if (e.Name != null && e.Name.Length > 0) {
                ValidateTypeName(e,"Name",e.Name);
            }
        }
CodeValidator