< godot c# > How do I convert xml to array?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By karismaup

How do I convert xml to array?

public void XMLloader( String _xmlPath )
    {
        parser = new XMLParser();  
        if( fileChecker( _xmlPath ) )
        {
            parser.Open( _xmlPath );
            if( parser.Read().ToString() == "Ok" )
            {
                GD.Print("<" + parser.GetNodeName() +">");
                parser.SkipSection();
                
                "  How do I convert xml to array? "
            };
        };
    }