Site Archives Documentation

Creating API documentation


We’ve recently been working on our API and came across the problem of writing documentation for the API.
Having looked at a number of solutions I came up with a simple solution using XML comments within C# and the XML generated by the project during compilation. Here are the steps:

For any exposed API methods you write, [...]