> Will you have the ability in the future (or do you now) of imbedding C > or C++ code in a C# application? I'm going to write an application in C#, > but I'm fearing that I might need a little more speed in some places than C# > will provide. I am considering to put those parts into a C .DLL. (I think > they are called .SO's in Linux.) Will this be possible? What would you > suggest doing?
You can use PInvoke, or you could "host" the runtime in your C code, and use internalcalls. Miguel. _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
