Пример #1
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// <summary>
        ///     Returns a <see cref="T:System.String" /> that represents the current configuration.
        /// </summary>
        /// <returns>
        ///     A textual representation of the configuration
        /// </returns>
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        public override string ToString()
        {
            var txt = new Textualiser();

            return(txt.Visit(this));
        }
Пример #2
0
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 /// <summary>
 ///     Returns a <see cref="T:System.String" /> that represents the current configuration.
 /// </summary>
 /// <returns>
 ///     A textual representation of the configuration
 /// </returns>
 ////////////////////////////////////////////////////////////////////////////////////////////////////
 public override string ToString() {
     var txt = new Textualiser();
     return txt.Visit(this);
 }