Archived
Private
Public Access
1
0

Reworked MloFinder

This commit is contained in:
2022-10-26 21:36:47 +02:00
parent d110af3b43
commit b4e5d26ee1
211 changed files with 10114 additions and 49486 deletions

View File

@@ -0,0 +1,16 @@
using System.Xml;
namespace MloFinder {
public static class XmlNodeExtensions {
public static XmlNode FindChild(this XmlNode parent, string name) {
foreach (XmlNode child in parent.ChildNodes) {
if (child.Name.Equals(name))
return child;
}
return null;
}
}
}