CSL_Test__1.Torrent.Torrent C# (CSharp) Method

Torrent() public method

public Torrent ( string information ) : System
information string
return System
        public Torrent(string[] information)
        {
            if (information.Length >= 13)
            {
                artist = information[0];
                album = information[1];
                albumType = information[2];
                bitrate = information[3];
                year = information[4];
                physicalFormat = information[5];
                bitFormat = information[6];

                /*Torrent file information*/
                path = information[10];
                fileName = information[11];
                birth = information[12];
                destPath = information[13];
                discard = (information[14] == "true") ? true : false;
            }
        }