The latest build of this product (v25.1.0) was released 2 months ago,
which was before this thread was created.

How can I make global variables known in c# syntax editor?
For Example to write:
var result = myGlobalVar + 10;
How can I make global variables known in c# syntax editor?
For Example to write:
var result = myGlobalVar + 10;
Hello,
Global variables aren't really a supported feature in object oriented C#. Is your editor just editing the interior of a method (via use of header/footer text like in our Code Fragments QuickStart) or full C# (namespace, class, etc.)? If it's just the interior of a method, you could declare the variable in the HeaderText and it would be available in IntelliPrompt.
Please log in to a validated account to post comments.