在“Watch”中查看时,括号[...]中的成员是什么?
如下调试时的快照,我看到括号中列出了成员。这些是什么?
As the below snapshot when debugging, I see members listed between brackets. What are they?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在括号内可以找到对象的实际运行时类型。在括号外面可以找到引用类型。
对象类型和引用类型之间的区别
Inside the brackets the actual runtime type of the object can be found. Outside the brackets the reference type can be found.
Difference Between Object Type and Reference Type