Go 애플리케이션에서 C# DLL 활용
Go 애플리케이션에서 C# DLL을 호출하는 것은 독특한 과제입니다. C/C DLL은 syscall을 사용하여 로드할 수 있지만 C# 어셈블리는 다른 형식을 갖습니다.
Go-Dotnet 라이브러리
다행히 go-dotnet( https://github.com/matiasinsaurralde/go-dotnet)이 격차를 해소합니다. 이 라이브러리를 사용하면 Go 애플리케이션에서 C# DLL을 포함한 .NET 어셈블리를 로드하고 활용할 수 있습니다.
사용 예
다음은 추가하는 간단한 C# DLL을 호출하는 방법에 대한 예입니다. 두 개의 숫자:
package main import ( "fmt" "github.com/matiasinsaurralde/go-dotnet/dotnet" ) func main() { // Load the C# DLL dllPath := "MathForGo.dll" assembly, err := dotnet.LoadAssembly(dllPath) if err != nil { panic(err) } // Get the "Add" method from the assembly method := assembly.Type("Namespace.ClassName").Method("Add") // Call the method with arguments result, err := method.Invoke(2, 3) if err != nil { panic(err) } // Convert the return value to an int numResult, err := result.Int() if err != nil { panic(err) } fmt.Printf("Result: %d\n", numResult) }
이 예에서는 Go-Dotnet 라이브러리를 사용하여 C# DLL, "Add" 메서드를 검색하고 인수를 사용하여 호출한 다음 반환 값을 int로 변환합니다.
참고: 이 접근 방식은 syscall을 사용하여 C/C를 로드하는 것과 다릅니다 DLL. Go-Dotnet 라이브러리는 Go 유형과 .NET 유형 간의 변환을 처리하므로 C#으로 작성된 코드를 호출하는 데 더 편리한 솔루션이 됩니다.
위 내용은 My Go 애플리케이션에서 C# DLL을 어떻게 호출할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!