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