Beispiel #1
0
        public object Get(string key)
        {
            var property = _root.FindBlock <PropertyBlock>(key);

            if (property == null)
            {
                return(null);
            }

            return(property.Value);
        }