public void addNote(Notiz pNotiz) { if (notizIndex == 30) { } else { notizVerwaltung[notizIndex] = pNotiz; notizIndex++; } saveNote(pNotiz); }
//Notiz Methoden public void saveNote(Notiz pNotiz) { //path = @"C:\Users\Nils Hauser\source\Desktop\Notizen\" + getTitel() + ".txt"; //sollte im Notizen Ordner im SliraAssistentFramework gespeichert werden String path = @"\Notizen" + pNotiz.getTitel() + ".txt"; try { using (FileStream fs = new FileStream(path, FileMode.Create)) { //created das File oder überschreibt es wenn es schon existiert byte[] info = new UTF8Encoding(true).GetBytes(pNotiz.getNotiz()); fs.Write(info, 0, info.Length); } } catch (Exception) { Console.WriteLine("Fehler beim erstellen einer Notiz"); } }