C# DataSet 问题 - 引号中的值是什么意思?
DataSet dataset = new DataSet("PinkElephant");
谁能告诉我 PinkElephant 在这种情况下的含义。我知道我正在声明一个新的 DataSet 对象,但是 PinkElephant 是什么?它只是数据集的名称吗?
谢谢
DataSet dataset = new DataSet("PinkElephant");
Can anyone give me insight into what PinkElephant means in this context. I understand that I'm declaring a new DataSet Object, but what is PinkElephant? Is it simply the name of the DataSet?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是为用于创建 XML 文档根标记的数据集指定的名称。如果不自己指定它,它会自己创建一些东西。
http://msdn.microsoft.com/en-us/library/7se64052。 ASPX
It's the name given to the DataSet for use in creating an XML document's root tag. Without specifying it yourself, it'll create something up itself.
http://msdn.microsoft.com/en-us/library/7se64052.aspx
是的,来自 MSDN,这就是名称
更具体地说,构造函数文档
Yes, from MSDN, it's the name
More specifically, that constructors doc