Think JSFiddle. LINQPad is pretty sweet for fast C# with similar options. Is there anything like LINQPad that runs in a browser?
|
closed as not constructive by gnat, Dynamic, Walter, Glenn Nelson, MichaelT Mar 1 at 12:58
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
You could try www.compilr.com. According to their website, Compilr is an online IDE, allowing you to write and compile code for a variety of platforms from any major web browser. I've tried it out, it works fairly well. It supports C#, Ruby, C, Java and others. |
|||
|
|
|
I don't know of anything like that, but the reason JSFiddle is practical is because the code is run natively on the browser, not the server. In order to do something similar for C# code, you would most likely need to do so on the server or use a browser plugin. A plugin solution would defeat the purpose of even being browser-based because it would require an installation and limit the platforms it can run on. A server-based solution would have many inherent risks unless it were heavily sandboxed. |
|||
|
|
|
Run Code is a very lightweight alternative that should work in any browser. It does not require an account like compilr and the interface is even more slimmed down than ideone. |
|||||||||
|