In C# XML comments, we have the <exception> tag to say that a method throws a particular type of exception.
What is the best way to tell the library users that a method does not throw any (expected) exceptions? Is the absense of <exception> tags enough? Or is there a special XML tag that I missed?
/// <remarks>This method does not throw any exceptions.</remarks>(of course, you can't really guarantee that a method doesn't throw ANY exception because of things like out-of-memory and out-of-stack-space)