Example #1
0
            private bool _isStatic()
            {
                try
                {
                    // ensure parent has finished emitting so that reflect is populated
                    m.m_parent.finish();

                    // return if .NET method(s) is static
                    return(m.m_reflect[0].IsStatic);
                }
                catch (Exception)
                {
                    throw Err.make("Method not mapped to System.Reflection correctly " + m.qname()).val;
                }
            }