Exemple #1
0
        /* String to int */
        public static int convert(string boyut)
        {
            /**
             * Input extraction
             */
            ExtractInput extract = new ExtractInput();

            /* Handle integers from string */
            int dizi_boyutu = extract.extractInput(boyut);

            /* Return size of array */
            return(dizi_boyutu);
        }