Example #1
0
 /// <summary> Returns a one line string representation of this Atom.
 /// Methods is conform RFC #9.
 ///
 /// </summary>
 /// <returns>  The string representation of this Atom
 /// </returns>
 public override System.String ToString()
 {
     System.Text.StringBuilder description = new System.Text.StringBuilder(64);
     description.Append("Reaction(");
     description.Append(ID);
     description.Append(", #M:").Append(mappingCount);
     //UPGRADE_TODO: The equivalent in .NET for method 'java.lang.Object.toString' may return a different value. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1043'"
     description.Append(", reactants=").Append(reactants.ToString());
     //UPGRADE_TODO: The equivalent in .NET for method 'java.lang.Object.toString' may return a different value. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1043'"
     description.Append(", products=").Append(products.ToString());
     //UPGRADE_TODO: The equivalent in .NET for method 'java.lang.Object.toString' may return a different value. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1043'"
     description.Append(", agents=").Append(agents.ToString());
     description.Append(')');
     return(description.ToString());
 }