Exemple #1
0
        /// <summary>
        /// Writes the line.
        /// </summary>
        /// <param name="text">The text.</param>
        /// <exception cref="NotImplementedException"></exception>
        public void WriteLine(string text)
        {
            _sp.Clear();
            _sp.EnsureIsOpen();

            _sp.WriteLine(text);

            _sp.Close();
        }