CSJ2K.j2k.image.ImgDataJoiner.ToString C# (CSharp) Метод

ToString() публичный Метод

Returns a string of information about the object, more than 1 line long. The information string includes information from the several input ImgData (their toString() method are called one after the other).
public ToString ( ) : System.String
Результат System.String
        public override System.String ToString()
        {
            System.String string_Renamed = "ImgDataJoiner: WxH = " + w + "x" + h;
            for (int i = 0; i < nc; i++)
            {
                //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'"
                string_Renamed += ("\n- Component " + i + " " + imageData[i]);
            }
            return string_Renamed;
        }