/// <summary> /// Returns a string that represents the value of this obj /// </summary> public override string ToString() { return(Title.ToString()); }
private void AppendWithSpace(object obj, string format) { AppendSpace(); Title.Append(TitleOrToString(obj, format)); }
/// <summary> /// Concatenate the specified text on to the end of the text of this TitleString /// </summary> /// <param name="text">text to Append</param> /// <returns> /// a reference to the called object (itself) /// </returns> public TitleBuilder Concat(string text) { Title.Append(text); return(this); }
private void AppendWithSpace(string str) { AppendSpace(); Title.Append(str); }