Cómo hacer referencia a los tipos de matriz en los comentarios de la documentación


Acabo de publicar esta pregunta y aprendí sobre <see cref="">, sin embargo, cuando intenté

/// This is a set of extensions that allow more operations on a <see cref="byte[]"/>.

El compilador me dio advertencias sobre que no estaba formateado correctamente. ¿Qué necesito hacer para que vea la referencia de código correctamente?

Author: Community, 2010-03-03

3 answers

Como se describe en este post , use

 <see cref="T:byte[]" />
 42
Author: Timores,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-05-23 12:34:43

Puedes escribir así:

/// <summary>
/// Array byte <see cref="byte"/>[]
/// Nullable byte <see cref="byte"/>?
/// </summary>

O

/// <summary>
/// Array byte <see cref="T:byte[]"/>
/// Nullable byte <see cref="T:byte?"/>
/// </summary>
 3
Author: Mr.Scazy,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-08-16 10:57:00

Quizás deberías tener <summary>...</summary> alrededor de:

/// <summary>
/// This is a set of extensions that allow more operations on a <see cref="byte[]"/>.
/// </summary>
 -1
Author: Vlad,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2010-03-02 23:01:15