
Hi!
I've got next problem with SyntaxEditor, may be missed something in documentation:
In case, when you don't include in variable declaration full type "path" with namespaces - you don't get an IntelliSense enumeration for this variable.
For example:
var strDict = new Dictionary<string, string>(); // you will see nothing after input “strDict.”
var strDict = new System.Collections.Generic.Dictionary<string, string>();// In this case - all works and I can see all members of strDict