配列の最初のエントリのポインタを取得したい。これが私が試した方法です
int[] Results = { 1, 2, 3, 4, 5 };
unsafe
{
int* FirstResult = Results[0];
}
次のコンパイルエラーを取得します。それを修正する方法はありますか?
固定ステートメント初期化子内の非固定式のアドレスのみを取得できます
配列の最初のエントリのポインタを取得したい。これが私が試した方法です
int[] Results = { 1, 2, 3, 4, 5 };
unsafe
{
int* FirstResult = Results[0];
}
次のコンパイルエラーを取得します。それを修正する方法はありますか?
固定ステートメント初期化子内の非固定式のアドレスのみを取得できます
これを試して:
unsafe
{
fixed (int* FirstResult = &Results[0])
{
}
}
エラーコードは答えを得るのに魔法です-エラーコード(あなたの場合はCS0212)を検索すると、多くの場合、提案された修正で説明が得られます。
検索:http ://www.bing.com/search?q = CS0212 + msdn
結果: http: //msdn.microsoft.com/en-us/library/29ak9b70%28v=vs.90%29.aspx
ページからのコード:
unsafe public void mf()
{
// Null-terminated ASCII characters in an sbyte array
sbyte[] sbArr1 = new sbyte[] { 0x41, 0x42, 0x43, 0x00 };
sbyte* pAsciiUpper = &sbArr1[0]; // CS0212
// To resolve this error, delete the previous line and
// uncomment the following code:
// fixed (sbyte* pAsciiUpper = sbArr1)
// {
// String szAsciiUpper = new String(pAsciiUpper);
// }
}
エラーメッセージはかなり明確です。MSDNを参照できます。
unsafe static void MyInsaneCode()
{
int[] Results = { 1, 2, 3, 4, 5 };
fixed (int* first = &Results[0]) { /* something */ }
}