加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

从C#访问C静态方法

发布时间:2020-12-15 06:41:15 所属栏目:百科 来源:网络整理
导读:说你有以下C代码: extern "C" { void testA(int a,float b) { } static void testB(int a,float b){ }} 我想使用DllImport在我的C#项目中访问这个: class PlatformInvokeTest{ [DllImport("test.so")] public static extern void testA(int a,float b); [D
说你有以下C代码:
extern "C" {
    void testA(int a,float b) {
    }

    static void testB(int a,float b){
    }
}

我想使用DllImport在我的C#项目中访问这个:

class PlatformInvokeTest
{
    [DllImport("test.so")]
    public static extern void testA(int a,float b);
    [DllImport("test.so")]
    internal static extern void testB(int a,float b);

    public static void Main() 
    {
        testA(0,1.0f);
        testB(0,1.0f);
    }
}

这对于testA是非常好的,但是testB无法引用EntryPointNotFoundException.

我可以从我的C#代码访问testB吗?怎么样?

解决方法

在C中,静态并不意味着与C#中的相同.在命名空间范围中,static给出一个名称内部链接,这意味着它只能在包含定义的翻译单元中访问.没有静态,它具有外部链接,并且可以在任何翻译单元中访问.

当您要使用DllImport时,您将需要删除static关键字

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读