コード例 #1
0
        public static T Get <T>(string key)
        {
            T      _temp    = default(T);
            string dbConfig = reg.Read(key);

            if (!string.IsNullOrEmpty(dbConfig))
            {
                _temp = dbConfig.DeserializeT <T>();
            }
            return(_temp);
        }