// // Mono.ILASM.IInstr // // Author(s): // Jackson Harper (Jackson@LatitudeGeo.com) // // (C) 2003 Jackson Harper, All rights reserved // using System; namespace Mono.ILASM { public interface IInstr { /// /// Add this instruction to the supplied codebuffer /// void Emit (CodeGen code_gen, PEAPI.CILInstructions cil); } }