bluedoom
bluedoom
旧版本1.2.2是OK的
我意思是多出来的参数其实可以忽略,不用检查那么严格
我遇到的一个情况是,C#函数当做参数传递,TS编译器允许这种操作,能够正常编译,这时候容易忽略这种传参的严格性。 ``` Typescript function SetCallback(callback:(a:number)=>void) { callback(123); } //void ACSharpFunc() { ... } SetCallback(ACSharpFunc); ```
就是用的库里面的DemoLanguageService
I met same problem I download the source. ..... static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { makeAssociations(); } catch (UnauthorizedAccessException) { if (args.Length ..... static void Main(string[] args)...