从C#访问C静态方法

前端之家收集整理的这篇文章主要介绍了从C#访问C静态方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
说你有以下C代码: @H_502_2@extern "C" { void testA(int a,float b) { } static void testB(int a,float b){ } }

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

@H_502_2@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关键字

原文链接:https://www.f2er.com/csharp/95011.html

猜你在找的C#相关文章