示例#1
0
        /// <summary>
        /// Renders all instances of <c>ScriptGroup</c> in this container.
        /// The default order of rendering is: Remote, Local, Inline.
        /// </summary>
        public string Render()
        {
            var str = Remote.Render();

            str += Environment.NewLine + Local.Render();
            str += Environment.NewLine + Inline.Render();

            return(str);
        }