Evernote.EDAM.NoteStore.RelatedNotesGeographicRange.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
    public override string ToString() {
      StringBuilder sb = new StringBuilder("RelatedNotesGeographicRange(");
      sb.Append("LatitudeCenter: ");
      sb.Append(LatitudeCenter);
      sb.Append(",LatitudePad: ");
      sb.Append(LatitudePad);
      sb.Append(",LongitudeCenter: ");
      sb.Append(LongitudeCenter);
      sb.Append(",LongitudePad: ");
      sb.Append(LongitudePad);
      sb.Append(",ScoreBoost: ");
      sb.Append(ScoreBoost);
      sb.Append(",Requirement: ");
      sb.Append(Requirement);
      sb.Append(")");
      return sb.ToString();
    }