Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            FindAndReplaceManager.FindNext("my string");

            Book.Notes notes = new Book.Notes();

            notes.Note = "1st note";
            Console.WriteLine(notes.Note);

            notes.Note = "2nd note ";
            Console.WriteLine(notes.Note);
        }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     FindAndReplaceManager.FindNext("my string");
 }