ArchiSteamFarm.BotDatabase.BotDatabase C# (CSharp) Method

BotDatabase() private method

private BotDatabase ( string filePath ) : System
filePath string
return System
        private BotDatabase(string filePath)
        {
            if (string.IsNullOrEmpty(filePath)) {
                throw new ArgumentNullException(nameof(filePath));
            }

            FilePath = filePath;
            Save();
        }

Same methods

BotDatabase::BotDatabase ( ) : System