Results 2 issues of Graphic

假定原生代码中有个类,类名字叫:ThisIsNativeClass,并且已注册在脚本系统中使用了。 那么如下脚本无法编译通过: public class TestTypeNameConfliction { //这一行无法编译通过,这个函数名和已注册的类名相同。 public void ThisIsNativeClass() { ``` } ``` }

``` //无法识别的表达式。 List list = new List { 1, 2, 3 }; ```