コード例 #1
0
ファイル: Program.cs プロジェクト: keshav11/WordList
 static void Main(string[] args)
 {
     var test = new WordList.DataLayer.WordListPersistenceLayer();
     test.Add("Hello", "World");
     test.Add("HowAre", "You");
     test.GetAll();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: keshav11/WordList
        static void Main(string[] args)
        {
            var test = new WordList.DataLayer.WordListPersistenceLayer();

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