ArchiSteamFarm.BotDatabase.BotDatabase C# (CSharp) Метод

BotDatabase() приватный Метод

private BotDatabase ( string filePath ) : System
filePath string
Результат System
        private BotDatabase(string filePath)
        {
            if (string.IsNullOrEmpty(filePath)) {
                throw new ArgumentNullException(nameof(filePath));
            }

            FilePath = filePath;
            Save();
        }

Same methods

BotDatabase::BotDatabase ( ) : System