Systran.MultimodalClientLib.Model.FileExtractTextResponse.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Get the string presentation of the object
public ToString ( ) : string
리턴 string
        public override string ToString()
        {
            var sb = new StringBuilder();
              sb.Append("class FileExtractTextResponse {\n");

              sb.Append("  Text: ").Append(Text).Append("\n");

              sb.Append("  Format: ").Append(Format).Append("\n");

              sb.Append("}\n");
              return sb.ToString();
        }
FileExtractTextResponse