How can we export C# methods?
I have a dll and I want to use its methods in the Python language with the ctypes module. Because I need to use the ctypes module, I need to export the C# methods for them to be visible in Python.
So, how can I export the C# methods (like they do in C++)?