System.Xml.XMLReader 中包含的方法的方法定义

发布于 2024-09-07 21:36:07 字数 210 浏览 3 评论 0原文

我无法找到定义这些方法的组成部分的参考资料。

我有点了解这些方法的作用以及它们采用的参数,但我希望了解它们的工作原理。

我想找到一些可以给我定义的东西,例如

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北凤男飞 2024-09-14 21:36:07

方法签名可在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文