Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/vba/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
是否可以在摘要评论中包含c#定义?_C#_Comments - Fatal编程技术网

是否可以在摘要评论中包含c#定义?

是否可以在摘要评论中包含c#定义?,c#,comments,C#,Comments,是否可以在摘要注释中使用c#定义? 而不是对象列表 /// <summary> /// Gets a List of Objects given a Table ID /// </summary> /// <param name="p_Table">The Table name to search for</param> /// <param name="p_Id">The ID field within the p_Table to

是否可以在摘要注释中使用c#定义? 而不是对象列表

/// <summary>
/// Gets a List of Objects given a Table ID
/// </summary>
/// <param name="p_Table">The Table name to search for</param>
/// <param name="p_Id">The ID field within the p_Table to search for</param>
/// <param name="ObjectList">A List of Objects as an out parameter</param>
/// <returns>A List of Objects</returns>
//
///获取给定表ID的对象列表
/// 
///要搜索的表名
///要搜索的p_表中的ID字段
///作为输出参数的对象列表
///物品清单
我想在摘要中特别使用
列表

/// <summary>
/// Gets a List<Objects> given a Table ID
/// </summary>
/// <param name="p_Table">The Table name to search for</param>
/// <param name="p_Id">The ID field within the p_Table to search for</param>
/// <param name="ObjectList">A List<Objects> as an out parameter</param>
/// <returns>A List<Objects></returns>
//
///获取给定表ID的列表
/// 
///要搜索的表名
///要搜索的p_表中的ID字段
///作为输出参数的列表
///单子

如果您不想使用
符号创建链接,则必须避开尖括号,如下所示:

/// <returns>A List&lt;Objects&gt;</returns>
/// <returns>A <see cref="List{T}" /></returns>
这将在文档中创建指向
列表的链接。不幸的是,您无法替换
T
;XML文档不支持这一点(不过,希望将来会支持)。

谢谢///ListObjects正是我想要的。