Database File
Overview
Licensing
Namespace
using Chase.CommonLib.FileSystem.Configuration;Constructors
DatabaseFile(string filePath)
DatabaseFile(string filePath)string dbFilePath = "myDatabase.db";
DatabaseFile database = new DatabaseFile(dbFilePath);static DatabaseFile Open(string filePath)
static DatabaseFile Open(string filePath)Methods
void WriteEntry(Guid key, object value)
void WriteEntry(Guid key, object value)T? ReadEntry<T>(Guid key)
T? ReadEntry<T>(Guid key)bool Exists(Guid key)
bool Exists(Guid key)void Dispose()
void Dispose()Example Usage
Last updated