Hacker News new | ask | show | jobs
by victorin 4593 days ago
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

1 comments

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