Exemplo n.º 1
0
        public void Save()
        {
            string current_tyon = settings.Serialize(target);

            if (current_tyon != previous_tyon)
            {
                stream.WriteText(current_tyon);
                previous_tyon = current_tyon;
            }
        }
Exemplo n.º 2
0
 public void WriteText(string text)
 {
     if (text != last_text)
     {
         if (stream_system_stream.WriteText(text).IsDesired())
         {
             last_text = text;
         }
     }
 }