CSLightStudio
CSLightStudio copied to clipboard
C#Light/Evil,a fast easy Script Language for Unity hot fix and everywhere.
Results
3
CSLightStudio issues
Sort by
recently updated
recently updated
newest added
有点小问题
1
1.函数体为空时,编译提示错误。 2.函数中仅有一些简单代码时(有时为了测试仅仅写了一行 简单的int i=0;)时,调用函数返回的CLS_Content.Value 等于null。
假定原生代码中有个类,类名字叫:ThisIsNativeClass,并且已注册在脚本系统中使用了。 那么如下脚本无法编译通过: public class TestTypeNameConfliction { //这一行无法编译通过,这个函数名和已注册的类名相同。 public void ThisIsNativeClass() { ``` } ``` }
``` //无法识别的表达式。 List list = new List { 1, 2, 3 }; ```