System.Xml.XMLReader 中包含的方法的方法定义
我无法找到定义这些方法的组成部分的参考资料。
我有点了解这些方法的作用以及它们采用的参数,但我希望了解它们的工作原理。
我想找到一些可以给我定义的东西,例如
void System.Xml.Xmlreader()
{
//class constructor function
}
此类中的所有或大多数方法。
I haven't been able to find a reference that defines what these methods are made up of.
I kind of get what these methods do and what arguments they take, but I'm hoping to find out how they work.
I'd like to find something that would give me a definition such as
void System.Xml.Xmlreader()
{
//class constructor function
}
for all or most of the methods in this class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
方法签名可在 MSDN 上找到:
http://msdn.microsoft.com/en-us/ Library/system.xml.xmlreader_methods.aspx
如果单击方法名称,您将看到定义、解释,通常还看到一些代码示例。
编辑:另外,如果您右键单击 using 指令并在 Visual Studio 中选择“转到定义”,您可以查看该类的元数据。
The method signatures are available on MSDN:
http://msdn.microsoft.com/en-us/library/system.xml.xmlreader_methods.aspx
If you click on the method names, you'll see a definition, explanation, and usually some code examples.
Edit: Also, if you right click on the using directive and choose "Go to Definition" in Visual Studio, you can view the metadata for the class.