/// <summary>
 ///     Save to the specified output stream.
 /// </summary>
 /// <param name="stream">The output stream.</param>
 public void Save(Stream stream)
 {
     var s = new ScriptSave(this);
     s.Save(stream);
 }
Esempio n. 2
0
        /// <summary>
        ///     Save to the specified output stream.
        /// </summary>
        /// <param name="stream">The output stream.</param>
        public void Save(Stream stream)
        {
            var s = new ScriptSave(this);

            s.Save(stream);
        }