- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 VB6 中有一些代码从 dll 导入函数,它使用 byVal 和 byRef 关键字,我想将该代码转换为 C# 3.5。
字符串的 unicode 编码会不会有问题?
我是否将 vb6 中的“byRef”变量声明为 C# 代码中的“ref”变量?
返回值被输入到由 VB6 代码作为“byVal”参数发送的字符串中,这是如何工作的,如果你想允许,你不应该发送东西“byRef”吗编辑字符串的功能?这个概念是否仍然适用于我的 C# 代码?
我尝试从 VB6 处理函数声明,参数类型只是 int、long 和 string。在有“byVal”关键字的地方,我只是将其留空并用 C# 中的“ref”关键字替换了“byRef”关键字,代码不起作用。
VB6 代码:
Private Declare Function Foo Lib "Foo_Functions.dll" (ByVal a as String, ByVal b
as Long, ByVal c as String, ByVal d as String, ByVal e as String, ByVal f
as String, ByVal g as Long, ByVal h as String, ByVal i as String, ByRef j
as Long, ByRef k as Long) As
Integer
我的 C# 3.5 翻译:
[Dllimkport("foo_functions.dll")] public static extern int foo(String a, long b,
string c, string d, string e, string f, long g, string h, stringbuilder i,
ref long j, ref long k);
请帮忙,我已经在这上面花了一整天了:p....
最后,我使用自动项目转换器(从 VB6 到 VB.NET 2008)将函数调用转换为 VB.NET 库,并使用 C# 引用调用它。
谢谢。
最佳答案
如果您将可修改的 byVal 字符串替换为 C# 中的 StringBuilder
,它们应该可以工作。另一种可能的解决方案是使用 [MarshalAs(UnmanagedType.VBByRefStr)] ref string i
。
我在 Visual Studio 中使用了“升级 Visual Basic 6 代码...”工具,这导致了以下 VB.NET 代码:
Private Declare Function Foo Lib "Foo_Functions.dll" (ByVal a As String, _
ByVal b As Integer, ByVal c As String, ByVal d As String, ByVal e As _
String, ByVal f As String, ByVal g As Integer, ByVal h As String, ByVal i _
As String, ByRef j As Integer, ByRef k As Integer) As Short
请注意,VB6 Long
已转换为 Integer
,而 VB6 Integer
已转换为 Short
。然后我使用反射器查看它在 C# 中的外观:
[DllImport("Foo_Functions.dll", CharSet=CharSet.Ansi, SetLastError=true, ExactSpelling=true)]
private static extern short Foo([MarshalAs(UnmanagedType.VBByRefStr)] ref
string a, int b, [MarshalAs(UnmanagedType.VBByRefStr)] ref string c,
[MarshalAs(UnmanagedType.VBByRefStr)] ref string d,
[MarshalAs(UnmanagedType.VBByRefStr)] ref string e,
[MarshalAs(UnmanagedType.VBByRefStr)] ref string f, int g,
[MarshalAs(UnmanagedType.VBByRefStr)] ref string h,
[MarshalAs(UnmanagedType.VBByRefStr)] ref string i, ref int j, ref int k);
这是 VB6 声明的准确翻译,应该具有相同的行为。如果这仍然不起作用,那么也许您可以描述它究竟是如何不起作用的(非托管函数是否被调用过,参数是垃圾,返回值是垃圾,还是其他什么?)。
关于c# - 将 dllimport 从 vb6 转换为 c# 3.5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1999423/
我有一个类,里面有一些静态成员函数。假设类 B,这个类有一个基类,它来自第三方库,比如 A。现在类 A 已经用 dllimport 和用mingw 我可以毫不费力地构建 sharedlibs 或那个类
在 C# 中,我有这个: [DllImport("user32.dll", EntryPoint = "GetDesktopWindow")] public static extern Int
我正在尝试编写一个使用 C++ 中定义的函数的 WPF 应用程序。 C++ 应用程序被编译为 DLL。 我正在做的是使用 DllImport 属性导入函数并使用它。这在我的机器上运行良好,但是当我尝试
有没有办法为一组外部函数指定相同的 DllImport 属性,类似于 extern "C"{ … } ?我不想为每个函数声明重复它:-) 最佳答案 没有。避免它的唯一方法是在 C++/CLI 中编写一
我正在尝试将短类型的参数传递给从 DLL 导入的 C++ 非托管函数。在我的 C++ DLL 代码中,我有以下函数: __declspec(dllexport)void ChangeIcon(char
我有一个第三方 c dll,我想在我的 c# 项目中使用它。我设法导入了一种读取文件头的方法。现在我想访问读取数据的方法。我认为问题在于包含字符串数组的结构,因此我尝试了各种方法,例如 StringB
如何使用反射枚举程序集中的所有 DLLImports? 最佳答案 遍历每个类中的每个方法,并检查 GetCustomAttributes(typeof(DllImportAttribute)) 是否返
在 asp.net 中,如果我使用 DLLImport 调用一个 dll,有人知道该实例的范围吗?它是在应用程序级别,所以任何后续调用都会转到 dll 的同一实例,直到应用程序结束? 我有一个 dll
我想了解 DllImport 的真正工作原理。我需要一个通俗易懂的英语解释——意思是简单的解释。 它是否与 DLL 中导出的方法静态链接,如“包含文件”指令/静态库? 还是在C#程序中到达执行点时动态
我正在尝试编写一个 C# 托管类来包装 SHGetKnownFolderPath,到目前为止它可以在 Vista 上运行,但由于在 shell32.dll 中找不到正确的函数而在 XP 上崩溃,正如预
我有一个带有 C++ 组件的 C# 应用程序。我在模块之间使用 DllImport 进行通信。该应用程序可以正常工作很多天,有时会意外崩溃。 [DllImport("recorder", Callin
这个问题在这里已经有了答案: Loading a 32-bit dll in a 64-bit process [duplicate] (1 个回答) 关闭 8 年前。 我希望我的 C# 应用程序有
我正在通过 C# 与 native 第 3 方 C++ DLL 进行交互,所提供的互操作层如下所示: C#: [DllImport("csvcomm.dll")] public static exte
我正在使用 [DLLImport] 属性访问我的 .NET 代码中的一堆 C++ 函数。现在,我通过以下方式拥有所有功能: const string DLL_Path = "path\\to\\my\
假设在 Native.dll 中有一个 c++ 方法 int NativeMethod(double, double *)。我第一次尝试从托管代码调用此方法(假设我不需要指定入口点) [DllImpo
我正在做一个P/Invoke,我正在使用下面的方法 [DllImport("Authz.dll", SetLastError = true)] public static extern BOO
static class Class { public static void methodRequiringStuffFromKernel32() { // c
我正在使用 [DllImport]属性将 native DLL 导入我的应用程序,但它加载的 DLL 不在本地 bin 文件夹中。它是从系统的其他地方加载的,但我不知道在哪里。 它适用于我的开发机器,
我刚刚在 C# 中遇到了 DllImport 的奇怪行为,我无法解释。我想知道它是如何可能的,以及我可以在哪里阅读它。案例是通过 DllImport 可以调用不真正导出表单 dll 的函数。就我而言,
我尝试使用 P/Invoke 将示例 .net 应用程序转换为 javascript JSIL . C# 代码: [DllImport("JSTestLib", EntryPoint = "Get42
我是一名优秀的程序员,十分优秀!