/// <summary>
        /// Displays the details of an object - either a single object or an enumeration of objects
        /// - in the specified rich text box.
        /// </summary>
        public static void ShowObject(RichTextBox textBox, object obj, int rootIndentLevel,
                                      string title, params object[] titleArgs)
        {
            RichTextBoxDisplayHelper viewer = new RichTextBoxDisplayHelper(textBox);

            viewer.DisplayObject(obj, rootIndentLevel, title, titleArgs);
        }