01-16-2020 04:55 AM
I am creating a .NET DLL for use within TestStand and I have added inline documentation (output as an XML file by VisualStudio)
Is there a way for TestStand to load the documentation and show it as the user selects the .NET methods, a bit like IntelliSense in VisualStudio?
01-16-2020 08:24 AM
Yes. You need to include that xml file next to your assembly dll. The help will show up in a tooltip when you hover over a class, member name, or parameter name. You can see this working for framework assemblies like mscorlib.
01-16-2020 10:30 AM
I see, seems to work now as you indicated.
Excellent, just what I needed/expected
Thanks