Untitled

 avatar
unknown
plain_text
2 years ago
464 B
5
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