static void Main(string[] args) { string myNote1 = "This is fascinating book"; string myNote2 = "Drinking cacao while reading is cozy"; string myNote3 = "Last chapter is surprising"; Book.Notes firstBookNotes = new Book.Notes(); firstBookNotes.SaveMyNotes(myNote1); firstBookNotes.SaveMyNotes(myNote2); firstBookNotes.SaveMyNotes(myNote3); firstBookNotes.Show(); //uncomment this if you wanna see your notes Console.ReadKey(); }
static void Main(string[] args) { FindAndReplaceManager.FindNext("Hello"); Book.Notes mybook = new Book.Notes(); mybook.MakeNote("world!"); }
public static void MakeNote(string note) { Book.Notes note1 = new Book.Notes(); note1.MakeNote(note); }