Binarysharp.MemoryManagement.Assembly.Assembler.Fasm32Assembler.Assemble C# (CSharp) Method

Assemble() public method

Assemble the specified assembly code.
public Assemble ( string asm ) : byte[]
asm string The assembly code.
return 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