Boo.Lang.Compiler.TypeSystem.ModuleEntity.SafeNamespace C# (CSharp) Method

SafeNamespace() private static method

private static SafeNamespace ( Module module ) : string
module Boo.Lang.Compiler.Ast.Module
return string
        private static string SafeNamespace(Module module)
        {
            return null == module.Namespace ? string.Empty : module.Namespace.Name;
        }