Evernote.EDAM.NoteStore.NoteStore.listTags_result.ToString C# (CSharp) Méthode

ToString() public méthode

public ToString ( ) : string
Résultat string
      public override string ToString() {
        StringBuilder sb = new StringBuilder("listTags_result(");
        sb.Append("Success: ");
        sb.Append(Success);
        sb.Append(",UserException: ");
        sb.Append(UserException== null ? "<null>" : UserException.ToString());
        sb.Append(",SystemException: ");
        sb.Append(SystemException== null ? "<null>" : SystemException.ToString());
        sb.Append(")");
        return sb.ToString();
      }