Python에서 C# 라이브러리 호출
IronPython을 사용해 보았으나 어려움을 겪었다면 대신 Python에서 C# 코드를 호출하는 것이 좋습니다. 이 접근 방식은 다음 예제와 같이 WPF 구성 요소를 포함하는 C# 라이브러리가 있는 경우 특히 유용할 수 있습니다.
`csharp
using System.Runtime.InteropServices;
using System.EnterpriseServices;
네임스페이스 DataViewerLibrary
{
public interface ISimpleProvider { [DispIdAttribute(0)] void Start(); } [ComVisible(true)] [ClassInterface(ClassInterfaceType.None)] public class PlotData : ServicedComponent, ISimpleProvider { public void Start() { Plot plotter = new Plot(); plotter.ShowDialog(); } }
}
`
Python에서 이 C# 코드를 호출하려면 NuGet 패키지 "UnmanagedExports"를 활용할 수 있습니다. 이 패키지를 설치하면 COM 레이어를 만들지 않고도 C# 코드를 내보낼 수 있습니다. 이를 수행할 수 있는 방법의 예는 다음과 같습니다.
`csharp
system 사용;
System.Collections.Generic 사용;
System.Linq 사용;
System.Runtime 사용. InteropServices;
System.Text 사용;
사용 System.Threading.Tasks;
RGiesecke.DllExport 사용;
class Test
{
[DllExport("add", CallingConvention = CallingConvention.Cdecl)] public static int TestExport(int left, int right) { return left + right; }
}
`
내보낸 후 C# 코드를 사용하면 DLL을 로드하고 다음에서 노출된 메서드를 호출할 수 있습니다. Python:
`python
ctypes 가져오기
a = ctypes.cdll.LoadLibrary(source)
a.add(3, 5)
`
이것은 메서드는 Python 코드에서 WPF 구성 요소를 사용하는 라이브러리를 포함하여 C# 라이브러리를 호출하기 위한 편리한 접근 방식을 제공합니다.
위 내용은 Python에서 C# 라이브러리(WPF 구성 요소 포함)를 호출하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!