You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't reference .NET assemblies like the real dotnet. What it does is simply translating the C# source into Lua. It will not work without the source. The developer said people has to use a decompiler to decompile the DLL to C# source before able to use this compiler. Why don't this compiler do this automatically for the users? I only want able to reference .NET assemblies, what happened under the hood I don't care!
The text was updated successfully, but these errors were encountered:
The initial design was a source-to-source translator, similar to Scala.js in naming convention. It uses Roslyn to parse C# source code, and Roslyn does not have the ability to decompile DLLs. Therefore, decompilation support was not considered.
I can't reference .NET assemblies like the real dotnet. What it does is simply translating the C# source into Lua. It will not work without the source. The developer said people has to use a decompiler to decompile the DLL to C# source before able to use this
compiler
. Why don't thiscompiler
do this automatically for the users? I only want able to reference .NET assemblies, what happened under the hood I don't care!The text was updated successfully, but these errors were encountered: