using System; namespace UnsafeCodeApplication { class Program { public static void Main() { unsafe { int var = 100; int* p = &var; Console.WriteLine("Data is: {0} " , var); Console.WriteLine("Data is: {0} " , p->ToString()); Console.WriteLine("Address is: {0} " , (int)p); } Console.ReadKey(); } } }
えええええ
以上がC# では、データ値をポインタとして取得しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。