예제 #1
0
파일: Tweet.cs 프로젝트: RodH257/RetrEave
 public override string ToString()
 {
     return("Tweet by " + Author.Name + " on " + DatePosted.ToShortDateString() + " content: " + Content);
 }
예제 #2
0
 /// <summary>
 /// Gets a string representation of this news entry.
 /// </summary>
 /// <returns>A string of the date's long date string.</returns>
 public override string ToString()
 {
     return(string.Concat(DatePosted.ToShortDateString(), " ", DatePosted.ToShortTimeString()));
 }