Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do)
When using the /doc compiler option, a comment was specified for some but not all parameters in a method. You may have forgotten to enter a comment for these parameters.
The following sample generates CS1573:
// CS1573.cs
// compile with: /W:4
public class MyClass
{
/// <param name='Int1'>Used to indicate status.</param>
// enter a comment for Char1?
public static void MyMethod(int Int1, char Char1)
{
}
public static void Main ()
{
}
}