This is great. One small bug cropped up, I collaborated on a fiddle with a work colleague and he couldn't see any output from clicking Run. http://www.dotnetfiddle.net/lN6m0S Great work though, will be in my favourites :)
Show HN: DotNetFiddle – JsFiddle for .Net
51–60 of 95 posts
Re: Show HN: DotNetFiddle – JsFiddle for .Net
#52O M G Collaboration coding in the browser is SERIOUSLY cool!
(no affiliation)
Re: Show HN: DotNetFiddle – JsFiddle for .Net
#53This is great. One small bug cropped up, I collaborated on a fiddle with a work colleague and he couldn't see any output from clicking Run. http://www.dotnetfiddle.net/lN6m0S Great work though, will be in my favourites :)
Yes, will be fixed by tomorrow. Thanks for reporting it.
Re: Show HN: DotNetFiddle – JsFiddle for .Net
#54Re: Show HN: DotNetFiddle – JsFiddle for .Net
#55Re: Show HN: DotNetFiddle – JsFiddle for .Net
#56While this one doesn't have the nice "fiddle" suffix, it has been around for a while and supports a lot of platforms: http://ideone.com/
There is also https://compilify.net/ and http://executify.com/ . But it's always good to have more options.
Re: Show HN: DotNetFiddle – JsFiddle for .Net
#57I've found a minor glitch. Seems that the Intellisense (auto-complete) does not work when I try to call a custom class method inline, like:
Console.WriteLine("Hello World, " + new MyClass().PrintTestSentence());
(Public methods of class "MyClass" does not show up there)
See here: http://www.dotnetfiddle.net/5oF8oR
Re: Show HN: DotNetFiddle – JsFiddle for .Net
#58This is super awesome! I was thinking of building something like this the other day because I wanted to test some code and not make a new test console app. Totally awesome!
Re: Show HN: DotNetFiddle – JsFiddle for .Net
#59This is really awesome, good job! I've found a minor glitch. Seems that the Intellisense (auto-complete) does not work when I try to call a custom class method inline, like: Console.WriteLine("Hello World, " + new MyClass().PrintTestSentence()); (Public methods of class "MyClass" does not show up there) See here: http://www.dotnetfiddle.net/5oF8oR
It works if you declare class first http://www.dotnetfiddle.net/IjtjcG
but not if u do initialization and call at the same time. Will take a look.
Re: Show HN: DotNetFiddle – JsFiddle for .Net
#60This is really awesome, good job! I've found a minor glitch. Seems that the Intellisense (auto-complete) does not work when I try to call a custom class method inline, like: Console.WriteLine("Hello World, " + new MyClass().PrintTestSentence()); (Public methods of class "MyClass" does not show up there) See here: http://www.dotnetfiddle.net/5oF8oR
Thanks for reporting it! It works if you declare class first http://www.dotnetfiddle.net/IjtjcG but not if u do initialization and call at the same time. Will take a look.
Example:
using System.
I don't get any choices...