I have a C# VS10 project. I want its part to be pure C. So I will have pure C library and A C# file that will have part with C code calling that pure Lib.
So I'll have C part of code - not precompiled DLL but C code and C# code files. So is it possible to have inside one C# file C code like we have C code inside C++ code?
like Inline C code inside C#...
(I know it can sound strange but I really need it)
Is it possible? Will I have posebilety to pass data from that C part to C#?