Orc.NuGetExplorer.StringExtensions.GetSafeScopeName C# (CSharp) Method

GetSafeScopeName() public static method

public static GetSafeScopeName ( this value ) : string
value this
return string
        public static string GetSafeScopeName(this string value)
        {
            if (value == null)
            {
                return "null";
            }

            return value.ToLower();
        }
    }