I have to give my clients the ability to edit scripts with VS Code. The problem.. when my software call:
CSharpScript.EvaluateAsync<int>(code, opt, host);
host object, should be passed to the script so that the script can interact with my application (CAD application).
It's possibile from VS Code
to see host object instance and have intellisense also on it?
Is this the right way to allow intellisense editing of scripts with externally supplied variables. Thank you very much