Mihir
Mihir

Reputation: 8734

is there any sites hosting for .net

there is a hosting for javascript and jquery programs such as jsfiddle. but i dont know is there any .net hosting site to post project to some one through the web as we do in the jsfiddle. if so please tell me.. Thank you

Upvotes: 0

Views: 161

Answers (1)

immutabl
immutabl

Reputation: 6903

I'm not sure you can find a site where you can host ad hoc pieces of code like you can on jsfiddle - as you know, C# code has to be compiled before it will execute...

But I've found LINQPad (http://www.linqpad.net) to be excellent for running snippets of code locally. If you need to share code, you could email it to your friends/colleagues and they can paste into LINQPad and run them as standalone pieces of code without the need for Visual Studio and the csc compiler.

HTH.

EDIT: Correction: Coderun is what you need. Its blown me away!

Upvotes: 1

Related Questions