Live data from Hacker News

Show HN: DotNetFiddle – JsFiddle for .Net

dotnetfiddle.net

51–60 of 95 posts

Re: Show HN: DotNetFiddle – JsFiddle for .Net

#51
post #49

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 :)

Yes, will be fixed by tomorrow. Thanks for reporting it.

Re: Show HN: DotNetFiddle – JsFiddle for .Net

#53
post #49

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 :)

Yes, will be fixed by tomorrow. Thanks for reporting it.

Good stuff!

Re: Show HN: DotNetFiddle – JsFiddle for .Net

#56
post #28

While 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.

compilify seems to take a long time to compile code :(

Re: Show HN: DotNetFiddle – JsFiddle for .Net

#57
This 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

Re: Show HN: DotNetFiddle – JsFiddle for .Net

#58

This 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!

As stated elsewhere linqpad is really great for testing ad-hoc, throwaway C# code (much more than just linq expressions). It kind of like a REPL for .net.

Re: Show HN: DotNetFiddle – JsFiddle for .Net

#59

This 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.

Re: Show HN: DotNetFiddle – JsFiddle for .Net

#60

This 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.

Also, "intellisense" for the "using" statement doesnt work.

Example:

   using System.
I don't get any choices...
Post reply on HN