Golang能封装成dll吗


当前第2页 返回上一页

5、参考 exportgo.h 文件中的函数定义,撰写 C# 文件 importgo.cs:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

using System;

using System.Runtime.InteropServices;

namespace HelloWorld

{

    class Hello

    {

        [DllImport("exportgo.dll", EntryPoint="PrintBye")]

        static extern void PrintBye();

        [DllImport("exportgo.dll", EntryPoint="Sum")]

        static extern int Sum(int a, int b);

        static void Main()

        {

            Console.WriteLine("Hello World!");

            PrintBye();

            Console.WriteLine(Sum(33, 22));

        }

编译 CS 文件得到 exe

1

csc importgo.cs

将 exe 和 dll 放在同一目录下,运行。

1

2

3

4

>importgo.exe

Hello World!

From DLL: Bye!

55

更多golang知识请关注PHP中文网golang教程栏目。

以上就是Golang能封装成dll吗的详细内容,更多文章请关注木庄网络博客!!

返回前面的内容

相关阅读 >>

kube-apiserver内存溢出问题调查及go tool pprof工具的使用

go三色回收

go string 解析

聊聊dubbo-go-proxy的replacepathfilter

go微服务入门到容器化实践,落地可观测的微服务电商项目

golang的堆栈怎么看

go语言基础之基本数据类型

golang中的闭包

手撸golang 基本数据结构与算法 数组

golang怎么定时任务

更多相关阅读请进入《golang》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...