helloworld922
helloworld922

Reputation: 10939

IronPython use C# module documentation

I have a C# module which can be imported into IronPython (well, technically the all can, but one that's meant to be imported). However, the default help used for C# modules by IronPython just isn't sufficient enough.

Is there a way to grab and attach the VS exported xml documentation to a C# module with IronPython's help system? Or is there some way in the C# code to specify what IronPython should put in lieu of the default documentation?

Upvotes: 4

Views: 598

Answers (1)

Dino Viehland
Dino Viehland

Reputation: 6486

If the XML file is in the same location as the assembly and has the same filename just with ".xml" instead of ".exe" or ".dll" then IronPython should pick it up and include it in relevant doc strings for types, methods, etc...

Upvotes: 2

Related Questions