Systran.ResourcesClientLib.Model.CorpusExistsResponse.ToString C# (CSharp) Method

ToString() public method

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

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

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