Пример #1
0
        public string PrintGotoTable()
        {
            string res = "";

            if (m_GotoTable != null)
            {
                for (int i = 0; i < m_GotoTable.Count; i++)
                {
                    GotoEntry ge = (GotoEntry)m_GotoTable[i];
                    res += ge.Print() + "\n";
                }
            }
            return(res);
        }