/// <summary>
 /// Returns a <see cref="System.String" /> that represents this instance.
 /// </summary>
 /// <param name="prefix">The prefix.</param>
 /// <returns>
 /// A <see cref="System.String" /> that represents this instance.
 /// </returns>
 public string ToString(string prefix)
 {
     Log.InfoList info = new Log.InfoList();
     info.Add(prefix, this.Category, this.Count, this.RawCategory);
     return(info.ToString());
 }
Beispiel #2
0
 /// <summary>
 /// Returns a <see cref="System.String" /> that represents this instance.
 /// </summary>
 /// <param name="prefix">The prefix.</param>
 /// <returns>
 /// A <see cref="System.String" /> that represents this instance.
 /// </returns>
 public string ToString(string prefix)
 {
     Log.InfoList info = new Log.InfoList(prefix);
     this.FillInfo(info);
     return(info.ToString());
 }