そのメソッドは必要ありません:
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行目)。