ToString() public method

public ToString ( ) : string
return string
 /// <summary>
 /// ノート本文の内容を出力する。
 /// </summary>
 /// <param name="note"></param>
 private void WriteNote(Note note)
 {
     Console.WriteLine("Title: " + note.Title);
     Console.WriteLine("GUID: " + note.Guid);
     Console.WriteLine("Content: " + note.Content);
     Console.WriteLine("ToString: " + note.ToString());
 }