is there an asp.net fiddle?

C#asp.net.Netasp.net Mvc

C# Problem Overview


Similar to jsfiddle, is there an asp.net fiddle website for us to share asp.net code fiddles? It'll greatly help asp.net developers. the current way to post asp.net code on SO is not so reader friendly. I hope there's something out there to make this easier. If there isn't anything like that (as i did some search but can't find one). Is this even something technically possible to be developed since c# is not a late binding language.

C# Solutions


Solution 1 - C#

You could use something like compilr.com, however, it requires a paid account (as of June 2013) to create projects but people can view it anonymously. It's pretty neat. (compilr closed down)

Example: http://compilr.com/cravecode/test-share/main.cs</del>

UPDATE 1

I'd also checkout coderun.com/ide (no longer available)

UPDATE 2

Check dotnetfiddle.net which has Context menu as well (pointed out by @wulfbane).

UPDATE 3 (2017-03-19)

Keeping answer updated, I now use:

You may also want to check Ideone (has no context menu)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRay ChengView Question on Stackoverflow
Solution 1 - C#used2couldView Answer on Stackoverflow