You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My documentation is multilingual using the <para/>-tag with an xml:lang-attribute.
For example:
/// <summary>
/// <para xml:lang="en">Gets or sets *.</para>
/// <para xml:lang="de">Ruft ab oder setzt *.</para>
/// </summary>
public string *
/// <summary>
/// <para xml:lang="en">Gets a value indicating whether *</para>
/// <para xml:lang="de">Gibt einen Wert zurück, der angibt, ob *.</para>
/// </summary>
public bool *
/// <summary>
/// <para xml:lang="en">Initializes a new instance of the <see cref="MyClass"/> class.</para>
/// <para xml:lang="de">Initialisiert eine neue Instanz der <see cref="MyClass"/>-Klasse.</para>
/// </summary>
However, currently SA1633 & SA1642 fail.
I would like SA1633 & SA1642 to be valid because the actual text does begin with the standard text, even if it is inside of a <para/>-tag.
The text was updated successfully, but these errors were encountered:
My documentation is multilingual using the
<para/>
-tag with anxml:lang
-attribute.For example:
However, currently SA1633 & SA1642 fail.
I would like SA1633 & SA1642 to be valid because the actual text does begin with the standard text, even if it is inside of a
<para/>
-tag.The text was updated successfully, but these errors were encountered: