Exemplo n.º 1
0
        private static void OnCollectedSymbolCountChanged(int index, string symbol, int count, int totalCount, bool isCorrect, int realyInsertedRowsCount, string comments)
        {
            CollectedSymbolCountChangedHandler handler = CollectedSymbolCountChanged;

            if (handler != null)
            {
                handler(index, symbol, count, totalCount, isCorrect, realyInsertedRowsCount, comments);
            }
        }
Exemplo n.º 2
0
        private static void OnCollectedSymbolCountChanged(int index, string symbol, int count, int totalCount, bool isCorrect)
        {
            CollectedSymbolCountChangedHandler handler = CollectedSymbolCountChanged;

            if (handler != null)
            {
                handler(index, symbol, count, totalCount, isCorrect);
            }
        }