编译时提示不安全的代码要求使用unsafe关键字

摘要 : Unsafe code occurs only when compiled with/unsafe


这个错误的原因是:在代码中unsafe关键字,一般使用指针的就要在代码中套上unsafe{}
解决方法一:将项目的“可编译不安全代码”属性设置为true就可以了,方法如下:项目属性对话框->配置属性->生成->允许不安全代码块 设为
\"true\"
解决方法二、对于asp.net 中的解决方法是:找到网站的web.config文件,在configuration节中加入:

<system.codedom>

<compilers>

<compiler

language="c#;cs;csharp" extension=".cs"

compilerOptions="/unsafe"

type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />

</compilers>

</system.codedom>

 

上一篇 :应用程序已预编译因此不允许使用目录App_Code
下一篇 :Repeater控件的SeparatorTemplate分隔模板