CSJ2K.Icc.ICCProfiler.ToString C# (CSharp) Method

ToString() public method

Return a suitable String representation of the class instance.
public ToString ( ) : System.String
return System.String
        public override System.String ToString()
        {
            System.Text.StringBuilder rep = new System.Text.StringBuilder("[ICCProfiler:");
            System.Text.StringBuilder body = new System.Text.StringBuilder();
            if (icc != null)
            {
                body.Append(eol).Append(CSJ2K.Color.ColorSpace.indent("  ", icc.ToString()));
            }
            if (xform != null)
            {
                //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'"
                body.Append(eol).Append(CSJ2K.Color.ColorSpace.indent("  ", xform.ToString()));
            }
            rep.Append(CSJ2K.Color.ColorSpace.indent("  ", body));
            return rep.Append("]").ToString();
        }