using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace upper_limit_crawler { public class ULDB { const string DBNAME = "DB"; public ULDB() { } public void Insert(string strKey, T Value) { BinaryRage.DB.Insert(strKey, Value, DBNAME); } public T Get(string strKey) { object data = BinaryRage.DB.Get(strKey, DBNAME); return (T)data; } public bool IsExist(string strKey) { return BinaryRage.DB.Exists(strKey, DBNAME); } } }