gpt4 book ai didi

c# - 名称包含无效字符,在注释中使用 cref

转载 作者:太空宇宙 更新时间:2023-11-03 10:53:15 25 4
gpt4 key购买 nike

/// <summary>
/// ...
/// Use <cref="SiX_Dg_RequestStop"/> function to stop this function from another thread.
/// </summary>
public static void SiX_Dg_Execute()
{
}

public static void SiX_Dg_RequestStop()
{
}
此代码中的

cref 链接给出以下编译器警告:

C:\Project\file.cs(1337,22): warning CS1570: XML comment on 'AtpDotNet.ATP.SiX_Dg_Execute()' has badly formed XML -- 'A name contained an invalid character.'

如何修复?

最佳答案

因为这不是有效的 XML(缺少节点名称):

<cref="SiX_Dg_RequestStop"/>

将其更改为:

<see cref="SiX_Dg_RequestStop"/>

关于c# - 名称包含无效字符,在注释中使用 cref,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20513986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com