Untitled

Anonymous
plain_text
12/17/2023 6:00 PM
620 B
18
Indexable
        public Image Draw()
        {
            GC.Collect();// collects the unreffered locations on the memory
            int temp;
            return RootNode.Right == null ? null : RootNode.Right.Draw(out temp);
        }

        public Image DrawBalanced()
        {
            GC.Collect();// collects the unreffered locations on the memory
            int temp;
            return RootNode == null ? null : RootNode.Draw(out temp);
        }
Editor is loading...
Leave a Comment