zoukankan      html  css  js  c++  java
  • Unity3d中C#使用指针(Unsafe)的办法(转)

    近日由于在U3D项目中要使用到数据传递(C++ DLL的数据传递给U3D中的C#),其中涉及到需要使用C#的指针。直接编译会出现以下错误Unsafe code requires the 'unsafe' command line option to be specified

       

    下面是我总结的解决办法:

    1.去除MONO编辑器中的Unsafe错误,Assembly-CSharp鼠标右键找到Options->Build->General Allow 'unsafe' code 打钩。这个只能去除MONO报错,但是依然无法运行。

    2.首先看下面一段比较长的

    Custom Preprocessor Directives

    It is also possible to define your own preprocessor directives to control which code gets included when compiling. To do this you must add in the "Assets/" folder a text file with the extra directives. The name of the file depends on the language you are using :

       

    C#

    <Project Path>/Assets/smcs.rsp

    C# - Editor Scripts

    <Project Path>/Assets/gmcs.rsp

    UnityScript

    <Project Path>/Assets/us.rsp

    Boo

    <Project Path>/Assets/boo.rsp

    As an example, if you include the single line '-define:UNITY_DEBUG' in your smcs.rsp file the define UNITY_DEBUG will exist as a global define for C# scripts, except for Editor scripts.

    Every time you make make changes to the .rsp files a recompilation needs to be done for them to be effective. You can do this by updating or reimporting a single script (.js, .cs or .boo) file.

    The usage of the .rsp files is described in the help of the smcs application, included in the Editor installation folder. You can get more information by running : "smcs -help".

    在你的Assets目录下面添加smcs.rsp文件,里面只加一行字不要有空格  -unsafe OK搞定。记得一定要重启Unity3d, 因为这个预编译是在启动U3D时候运行的。工程文件名别带中文。

    原理是编辑器中的smcs.exe 添加编译命令,也可以在CMD下运行编辑器目录下的smcs.exe  逐个添加,会很累的。

    测试代码:

    unsafe void test () {

         int i=10;

                int k;

                int *j=&i;      

                k=*j+1;

               print("unsafe test " + k.ToString());

     }

       

    源文档 <http://www.j2megame.com/html/xwzx/ty/3652.html>

  • 相关阅读:
    等值首尾和2012年12月27日
    求质数2012年12月29日
    动态规划之最长公共子序列2012年12月22日,23日
    两数组最短距离2012年12月26日
    支配值数目2012年12月25日
    等值数目2012年12月26日
    最长平台问题(递归算法)2012年12月25日
    最长平台问题2012年12月24日
    筛法求质数2012年12月30日
    线性筛法2013年1月2日
  • 原文地址:https://www.cnblogs.com/zsb517/p/4012858.html
Copyright © 2011-2022 走看看