I also couldn’t find any C#-documentation for Bouncy Castle API. Seems, like it doesn’t exist.
But you can go this way. Download library sources, and look at them a little. Code actually looks like Java-code, but it has minimal differences:
- Some base classes moved to interfaces
- All the methods and properties are named in ‘UpperCamelCase’
Therefore you can freely use Java-documentation. And finally, some example for it usage in C#.
Also, want to add, answer for this question really helps me in one time.