如题,要使用不安全代码时要使用unsafe但是我添加后,编译器报错。
static unsafe void Main(string[] args) { int var = 20; int* p = &var; Console.WriteLine("Dtat is:{0}", var); Console.WriteLine("Address is:{0}", (int)p); Console.ReadKey(); }
报错提示是:不安全代码只会在使用/unsafe编译的情况下出现
我该如何使用/unsafe编译情况?
http://jingyan.baidu.com/article/afd8f4de55e99c34e286e995.html
已解决...
右击项目选择属性,编译(build)栏勾选 allow unsafe code