ReviewNotifier.ReviewNotifierConfiguration.NullIfEmpty C# (CSharp) Method

NullIfEmpty() private static method

private static NullIfEmpty ( string str ) : string
str string
return string
        private static string NullIfEmpty(string str)
        {
            return string.IsNullOrEmpty(str) ? null : str;
        }