コード例 #1
0
        internal void LyricFound(String lyricStrings, String artist, String title, String site, int row)
        {
            string cleanLyric = LyricUtil.FixLyrics(lyricStrings, m_findArray, m_replaceArray);

            --m_noOfCurrentSearches;

            if (m_allowAllToComplete || m_StopSearches == false)
            {
                m_Form.LyricFound = new Object[] { cleanLyric, artist, title, site, row };
                StatusUpdate(artist, title, site, true);
            }
        }
コード例 #2
0
        internal void LyricFound(String lyricStrings, String artist, String title, String site, int row)
        {
            var cleanLyric = LyricUtil.FixLyrics(lyricStrings, _mFindArray, _mReplaceArray);

            --_mNoOfCurrentSearches;

            if (_mAllowAllToComplete || _mStopSearches == false)
            {
                _mForm.LyricFound = new Object[] { cleanLyric, artist, title, site, row };
                StatusUpdate(artist, title, site, true);
            }
        }