Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is there an asp.net fiddle? [closed]

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.

like image 601
Ray Cheng Avatar asked Jun 03 '12 19:06

Ray Cheng


People also ask

What is .NET fiddle?

NET Fiddle is an online coding environment that features an active and rich community. It allows you to write, compile and execute code without having to install anything locally.

Is ASP.NET just C#?

C# and C#.NET are essentially synonymous, however VB.NET and VB are different and ASP and ASP.NET are also different. VB generally refers to VB6 and older, and ASP refers to classic ASP.

What is ASP programming language?

The ASP programming language is used to code dynamic web pages, web services and applications. The term ASP is an acronym for Active Server Pages. The ASP coding language is a proprietary Microsoft product and the code must be run and interpreted on a Windows IIS web server.


1 Answers

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

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:

  • https://csharppad.com
  • http://rextester.com (has a really neat collaboration feature)
  • https://dotnetfiddle.net

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

like image 110
used2could Avatar answered Sep 22 '22 13:09

used2could