Is there any way to create an instruction in dnlib, using the name of opcode as a string?
Looking forward for something as new Instruction("opcodename")
or new Instruction (OpCode.FromName("opcodename")
, but only thing I was able to find is opcode type constructor, which looks pretty confusing, and, from what I've got, it's not meant for the kind of task I'm trying to accomplish