如何将 xmldocument 对象发送到另一个类中的函数?在下面的示例中,我没有从 scan 函数中显示所有 xmldocument 方法和属性。
xmldocument xmldoc = new xmldocument();
xmldoc.load(test.xml);
anotherclass axls = new anotherclass();
axls.scan(xmldoc);
public class anotherclass()
{
public void scan(object xmldoc) { some code }
}