コード例 #1
0
ファイル: Interpreter.cs プロジェクト: tinelion/cs_jvm
        private Code GetCode(MemberInfo methodInfo)
        {
            Code code = methodInfo.CodeAttribute();

            if (code == null)
            {
                throw new Exception("No code exception");
            }
            return(code);
        }