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