Exemplo n.º 1
0
 public void save()
 {
     using (StreamWriter f = new StreamWriter(fname))
     {
         f.Write(Encoding.ASCII.GetBytes(richTextBox1.Text));
         if (Text.EndsWith("*"))
         {
             Text = Text.Substring(0, Text.Length - 1);
         }
         parentProject.build();
     }
 }