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 }
}