예제 #1
0
            public bool SetPropertyString(string key, string val)
            {
                var prop = PropertyValue.FromString(val);

                if (properties.ContainsKey(key) && properties[key].Equals(prop))
                {
                    return(false);
                }

                properties[key] = prop;
                return(true);
            }