VisualJS lets you run C# code in real-time!
Say goodbye to compiling web browser C#, when you can use VisualJS!
Warning: Not all functions of C# are supported. Only a few.
You can run VSConsole/BAT files with VisualJS! (quite limited...)
For example:
open_terminal_session(); // no longer able to do run_exec_console or open_terminal_session.
run_exec_console("ECHO off"); // wont say "echo hello!"
run_exec_console("echo hello!"); // "hello!"
close_terminal_session(); // No longer be able to do run_exec_console.
If I ever add WinForms into VisualJS, it will be strictly limtied.
Example: Placing button/panel would be able to use a HTML element. Not magic like Visual Studio.
Version 1:
- run_exec_console("ECHO off");
- open_terminal_session();
- close_terminal_session();
In Version 1 to run code you can only use ECHO and echo.
open_terminal_session();
run_exec_console("ECHO on");
run_exec_console("echo hi");
run_exec_console("ECHO off");
run_exec_console("echo hi");
close_terminal_session();
Version 1 uses the console, but will soon use GetElementById (maybe)