aboutsummaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2026-06-04 14:49:26 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2026-06-04 14:49:26 +0800
commit74873935d7c98fefb4fdab23d7f7e174dcc75ae3 (patch)
tree5ccbc591aa4597c8bf217c5b58438842407e5450 /Program.cs
Add initial project files and HermesOnDisk implementation
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..59ad897
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,13 @@
+namespace HermesOnDisk;
+
+public abstract class Program
+{
+ public static void Main(string[] args)
+ {
+ HermesOnDisk.Root = new DirectoryInfo(AppContext.BaseDirectory);
+ HermesOnDisk.String[0] = "MyName";
+ HermesOnDisk.Float[0] = 12;
+ HermesOnDisk.Boolean[0] = true;
+ HermesOnDisk.Store();
+ }
+}