示例#1
0
        public bool GetProperty <T>(string key, JsonSerializerOptions options, out T t)
        {
            if (Data.TryGetValue(key, out var el))
            {
                t = el.ToObject <T>(options);
                return(true);
            }

            t = default;
            return(false);
        }