Example #1
0
        public bool IsMethodSynthetic(JvmMethod method)
        {
            byte isSynthetic;

            ThrowOnFailure(_rawInterface.IsMethodSynthetic(_env, (jmethodID)method, out isSynthetic));
            return(isSynthetic != 0);
        }