Compilerwarnung (Stufe 2) CS1710

Aktualisiert: November 2007

Fehlermeldung

Der XML-Kommentar für "Typ" enthält ein doppeltes typeparam-Tag für "Parameter".
XML comment on 'type' has a duplicate typeparam tag for 'parameter'

Die Dokumentation eines generischen Typs schließt ein doppeltes Tag für den Typparameter ein.

Beispiel

Durch den folgenden Code wird die Warnung CS1710 angezeigt.

// CS1710.cs
// compile with: /doc:cs1710.xml
// To resolve this warning, delete one of the duplicate <typeparam>'s.
using System;
class Stack<ItemType>
{
}

/// <typeparam name="MyType">can be an int</typeparam>
/// <typeparam name="MyType">can be an int</typeparam>
class MyStackWrapper<MyType>
{
    // Open constructed type Stack<MyType>.
    Stack<MyType> stack;
    public MyStackWrapper(Stack<MyType> s)
    {
        stack = s;
    }
}

class CMain
{
    public static void Main()
    {
        // Closed constructed type Stack<int>.
        Stack<int> stackInt = new Stack<int>();
        MyStackWrapper<int> MyStackWrapperInt =
            new MyStackWrapper<int>(stackInt);
    }
}