Ejemplo n.º 1
0
 /// <summary>
 ///     Returns a string that represents the value of this obj
 /// </summary>
 public override string ToString()
 {
     return(Title.ToString());
 }
Ejemplo n.º 2
0
 private void AppendWithSpace(object obj, string format)
 {
     AppendSpace();
     Title.Append(TitleOrToString(obj, format));
 }
Ejemplo n.º 3
0
 /// <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);
 }
Ejemplo n.º 4
0
 private void AppendWithSpace(string str)
 {
     AppendSpace();
     Title.Append(str);
 }