0

我有一个本机 C++ 函数,我希望将其导入到我的 C# 项目文件中。

该文件是 vcclr.h,它位于 Visual Studio 9.0/VC/include 文件夹中。功能是PtrToStringChars(string s)

是否有一个等效的 c# 函数可以用来代替这个本机 C++ 函数?

另外,如果我想导入这个函数,我需要指定包含这个文件的 dll 的名称。如何获取此 dll 的名称?

我可以看到包含此​​函数的 C++ 文件,并且从那里我可以看到它的文件夹位置(绝对路径和相对路径)。

4

1 回答 1

3

您不需要该方法:

string str = "hello".Substring(0, 2); // force not to inline the string
                                      // it would be the same if it was inlined

GCHandle h = GCHandle.Alloc(str, GCHandleType.Pinned);
IntPtr ptr = h.AddrOfPinnedObject(); // Your address

// ch is h
// the unchecked is necessary (technically optional because it's default)
// because Marshal.ReadInt16 reads a signed Int16, while char is more similar
// to an unsigned Int16
char ch = unchecked((char)Marshal.ReadInt16(ptr));

或带有一些不安全的代码(请参阅固定语句):

fixed (char* ptr2 = str)
{
    char ch2 = *ptr2;
}

如果你真的想要 PtrToStringChars(...)?你不能拥有它......它直接在vcclr.h标题中定义为内联函数(在我的第 37-39 行用于注释,40-48 用于代码)。

于 2013-08-15T14:39:40.823 回答