G Guest Jan 26, 2007 #1 Hi Is it possible to add assembly code directly in a C# file? (MOV AX,BX ....etc)
S Stefan Z Camilleri Jan 26, 2007 #2 Hi Is it possible to add assembly code directly in a C# file? (MOV AX,BX ....etc) Click to expand... No, since C# can only do managed code, asm is not an option. What you can do is create an external library in c++ and then link to it.
Hi Is it possible to add assembly code directly in a C# file? (MOV AX,BX ....etc) Click to expand... No, since C# can only do managed code, asm is not an option. What you can do is create an external library in c++ and then link to it.