VAGSuite.CompareResults.CastSelectEvent C# (CSharp) Метод

CastSelectEvent() приватный Метод

private CastSelectEvent ( int m_map_address, int m_map_length, string m_map_name, int symbolnumber1, int symbolnumber2, int codeblock1, int codeblock2 ) : void
m_map_address int
m_map_length int
m_map_name string
symbolnumber1 int
symbolnumber2 int
codeblock1 int
codeblock2 int
Результат void
        private void CastSelectEvent(int m_map_address, int m_map_length, string m_map_name, int symbolnumber1, int symbolnumber2, int codeblock1, int codeblock2)
        {
            if (onSymbolSelect != null)
            {
                // haal eerst de data uit de tabel van de gridview
                onSymbolSelect(this, new SelectSymbolEventArgs(m_map_address, m_map_length, m_map_name, m_filename, false, m_compareSymbolCollection, symbolnumber1, symbolnumber2, codeblock1, codeblock2));
            }
        }