Is there some method of using C source mixed with inline asm (this is not C++ code) in a C# app? I\'m not picky about how it gets done, if it requires compiling the C/
Using inline assembly in C# is not a good idea.
The concept of.NET IL is to be portable.
Of you use online assembly then your code will not run on machines with different architecture such as ARM.