コード例 #1
0
ファイル: Disassembler.cs プロジェクト: masaeedu/Vagabond
        public static IList <Instruction> GetInstructions(this MethodBase self)
        {
            if (self == null)
            {
                throw new ArgumentNullException("self");
            }

            return(MethodBodyReader.GetInstructions(self).AsReadOnly());
        }
コード例 #2
0
 public static IList <Instruction> GetInstructions(this MethodBase self)
 {
     return(MethodBodyReader.GetInstructions(self).AsReadOnly());
 }