Boo.Lang.Compiler.CompilerErrorFactory.DidYouMeanOrNull C# (CSharp) Method

DidYouMeanOrNull() private static method

private static DidYouMeanOrNull ( string suggestion ) : string
suggestion string
return string
        private static string DidYouMeanOrNull(string suggestion)
        {
            return (null != suggestion)
                ? string.Format(StringResources.BooC_DidYouMean, suggestion)
                : null;
        }
CompilerErrorFactory