Exemplo n.º 1
0
        private static int ParseRow(ResultRowCell resultRowCell, string[] listOfWords)
        {
            int value = 0;
            for (int i = 0; i < listOfWords.Length; i++)
            {
                value += resultRowCell.ParseListByString(listOfWords[i]);
            }
            if (value != listOfWords.Length)
                value = 0;

            return value;
        }