Is it possible to write code in C# and use Script# to share it between .NET assemblies and JavaScript?
问题 I'm investigating using Script# to share some of our C# business logic with the client-side by compiling it to JavaScript. Question is, is it possible to reference a Script# class library from another .NET assembly? I've tried doing it in a quick test and failed miserably. Looking through the Script# source code leads me to believe this won't be possible because no implementation code has been provided for Script#'s mscorlib classes. See the String class as an example. If someone can provide