Binarysharp.MemoryManagement.Assembly.Assembler.Fasm32Assembler.Assemble C# (CSharp) Méthode

Assemble() public méthode

Assemble the specified assembly code.
public Assemble ( string asm ) : byte[]
asm string The assembly code.
Résultat byte[]
        public byte[] Assemble(string asm)
        {
            // Assemble and return the code
            return Assemble(asm, IntPtr.Zero);
        }

Same methods

Fasm32Assembler::Assemble ( string asm, IntPtr baseAddress ) : byte[]
Fasm32Assembler