Beispiel #1
0
        public void Core_Collections_ListSafe_GetValue()
        {
            var kvList = new KeyValueListString();

            kvList.Add("Key1", "Value1");
            kvList.Add("Key2", "Value2");
            Assert.IsTrue(kvList.GetValue("Key1") != string.Empty);
        }
        public void Collections_ListSafe_GetValue()
        {
            var kvList = new KeyValueListString();

            kvList.Add("Key1", "Value1");
            kvList.Add("Key2", "Value2");
            Assert.IsTrue(kvList.GetValue("Key1") != TypeExtension.DefaultString);
        }