Nini.Ini.IniWriter.Comment C# (CSharp) Method

Comment() private method

Returns a formatted comment.
private Comment ( string text ) : string
text string
return string
        private string Comment(string text)
        {
            return (text == null) ? "" : (" " + commentDelimiter + " " + text);
        }