本文介绍了循环遍历

问题描述

我的方法:

if (File.Exists(@"C:\config.

我的

现在我的方法只返回前 2 个.我在做什么错...

解决方案

使用 System. 命名空间以避免长类型限定,即...

 使用 System.

然后尝试这样的事情..

 

我认为你的方法有问题.

a) 我不认为 SelectNodes 应该采用 /config 参数,而应该采用 config.

b) 在选择第一个(也是唯一的 - .Net 中的 ChildNodes.

My Method:


if (File.Exists( @"C:\config.

My

<?

Now my method returns the first 2 and nothing else. What am i doing wrong...

解决方案

use the System. namespace to avoid long type qualifications ie...

    using System.

Then try something like this..

    

I believe there is something wrong with your method.

a) I don't think SelectNodes should take the /config argument, rather it should take config.

b) After selecting the first (and only - ChildNodes of the root.

这篇关于循环遍历

09-22 04:19