在我的 C# 程序中,我有以下源代码:
if ((Int32.Parse(u_Message.PK1)
将鼠标悬停在单词
Int32
上方时,我看到的是:
我对“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
将鼠标悬停在此类上时:
如您所见,该提示中没有消息“冷启动消息”。
我怎样才能到达那里?
供您参考:我已经构建了我的解决方案,但没有解决问题。