• 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>

  • 相关阅读:
    frame和iframe区别
    idea基本
    Spring中加载xml配置文件的六种方式
    java中Map,List与Set的区别
    java集合框架
    springmvc IDEA
    springmvc 精华
    eclipse 中 git 解决冲突(重点)
    启动Tomcat报错 java.util.zip.ZipException: invalid LOC header (bad signature)
    PowerDesigner 提示 Existence of index、key、reference错误
  • 原文地址:https://www.cnblogs.com/zsb517/p/4012858.html
Copyright © 2020-2023  润新知