How to export C# methods?

2020-01-27 05:39发布

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++)?

4条回答
爷的心禁止访问
2楼-- · 2020-01-27 06:03

(This may no longer be relevant since SLaks has found that ingenious link, but I'll leave an edited version for reference...)

The "normal" way of exposing .NET/C# objects to unmanaged code (like Python) is to create a COM-callable wrapper for the C# DLL (.NET assembly), and call that using Python's COM/OLE support. To create the COM-callable wrapper, use the tlbexp and/or regasm command-line utilities.

Obviously, however, this does not provide the C/DLL-style API that SLaks' link does.

查看更多
相关推荐>>
3楼-- · 2020-01-27 06:05

Contrary to popular belief, this is possible.
See here.

查看更多
劳资没心,怎么记你
4楼-- · 2020-01-27 06:09

That's not possible. If you need DLL exports you'll need to use the C++/CLI language. For example:

public ref class Class1 {
public:
  static int add(int a, int b) {
      return a + b;
  }
};

extern "C" __declspec(dllexport) 
int add(int a, int b) {
  return Class1::add(a, b);
}

The class can be written in C# as well. The C++/CLI compiler emits a special thunk for the export that ensures that the CLR is loaded and execution switches to managed mode. This is not exactly fast.

Writing [ComVisible(true)] code in C# is another possibility.

查看更多
我想做一个坏孩纸
5楼-- · 2020-01-27 06:22

With the normal Python implementation ("CPython"), you can't, at least not directly.

You could write native C wrappers around our C# methods using C++/CLI, and call these wrappers from Python.

Or, you could try IronPython. This lets you run Python code and call code in any .Net language, including C#.

查看更多
登录 后发表回答