Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- phantomjs ->
- http://phantomjs.org/download.html
- program.aspx ->
- using System.Diagnostics;
- class Program
- {
- static void Main()
- {
- Process.Start("phantomjs hello.js");
- }
- }
- hello.js ->
- console.log('Hello, world!');
- phantom.exit();
- command line arguments ->
- http://stackoverflow.com/questions/9679375/run-an-exe-from-c-sharp-code
Advertisement
Add Comment
Please, Sign In to add comment