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 に答える