Systran.ResourcesClientLib.Model.CorpusExistsResponse.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 CorpusExistsResponse {\n");

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

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