The <returns> tag describes the return value of a method.
<returns>description</returns>
where:
- description
- A description of the return value.
Applies To
Method.
Remarks
Example
[C#] /// text for class MyClass public class MyClass { /// <returns>Returns zero.</returns> public static int GetZero() { return 0; } /// text for Main public static void Main () { } }