Let's say I'm writing a C# class with a simple method which returns a int type for example. I build the project which is a class library and then I obtain a dll. Can I use that dll to call that simple method but in C language?
I've been doing some research and I found out that is possible if a have a dll written in c, and called in C# but nothing about the vice versa scenario.
Thank you in advance!