a.spritestudio.editor.xml.NodeReader.findFirst C# (CSharp) 메소드

findFirst() 공개 정적인 메소드

ノードの検索
public static findFirst ( XmlDocument xml, string tag ) : NodeReader
xml System.Xml.XmlDocument
tag string
리턴 NodeReader
        public static NodeReader findFirst( XmlDocument xml, string tag )
        {
            var node = xml.SelectSingleNode( tag );
            return node != null ? new NodeReader( node ) : null;
        }