HaloMap.Meta.Meta.RecursivelyLoadMetas C# (CSharp) Method

RecursivelyLoadMetas() public method

The recursively load metas.
public RecursivelyLoadMetas ( bool parsed, System.Windows.Forms.ToolStripProgressBar pb ) : ArrayList
parsed bool The parsed.
pb System.Windows.Forms.ToolStripProgressBar The pb.
return System.Collections.ArrayList
        public ArrayList RecursivelyLoadMetas(bool parsed, ToolStripProgressBar pb)
        {
            ArrayList metas = new ArrayList(0);
            metas.Add(this);
            SaveRecursiveFunction(this, ref metas, parsed, pb, 0, 100);
            return metas;
        }