示例#1
0
 static void Main(string[] args)
 {
     var test = new WordList.DataLayer.WordListPersistenceLayer();
     test.Add("Hello", "World");
     test.Add("HowAre", "You");
     test.GetAll();
 }
示例#2
0
        static void Main(string[] args)
        {
            var test = new WordList.DataLayer.WordListPersistenceLayer();

            test.Add("Hello", "World");
            test.Add("HowAre", "You");
            test.GetAll();
        }