使用 C# 类时的 Visual Studio 提示

问题描述 投票:0回答:1

在我的 C# 程序中,我有以下源代码:

if ((Int32.Parse(u_Message.PK1)

将鼠标悬停在单词

Int32
上方时,我看到的是:

enter image description here

我对“Represents a 32-bitsigned integer.”这句话特别感兴趣,它是由以下(反编译的)源代码引起的:

//
// Summary:
//     Represents a 32-bit signed integer.
[Serializable]
[ComVisible(true)]
[__DynamicallyInvokable]
public struct Int32 : 

但是,当我尝试为我的个人课程获得相同的东西时,这似乎不起作用:

一段源代码,定义类:

    //
    // Summary:
    //     Coldstart message
    public class Message_Rec_A_Message : Message

将鼠标悬停在此类上时:

enter image description here

如您所见,该提示中没有消息“冷启动消息”。

我怎样才能到达那里?

供您参考:我已经构建了我的解决方案,但没有解决问题。

c# visual-studio code-documentation hint
1个回答
0
投票

您所看到的 Int32 是生成/反编译的代码,它不一定符合代码文档的格式。

对于您自己的示例,请尝试以下操作:

/// <summary>
/// Coldstart message
/// </summary>

注意注释斜杠的数量和 XML 格式。

您可以从 Microsoft 了解更多相关信息。

© www.soinside.com 2019 - 2024. All rights reserved.