Incredibly important

This commit is contained in:
j4ck 2022-06-04 23:21:49 +03:00
parent f072749c0a
commit 278041d688
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ public class Database
else
{
Console.WriteLine($"[{Name}] The file is getting created.");
File.Create($"{Name}.json");
var file = File.Create($"{Name}.json");
file.Close();
}
}
public void Save()