Orc.NuGetExplorer.StringExtensions.GetSafeScopeName C# (CSharp) 메소드

GetSafeScopeName() 공개 정적인 메소드

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

            return value.ToLower();
        }
    }