ArchiSteamFarm.GlobalDatabase.GlobalDatabase C# (CSharp) Method

GlobalDatabase() private method

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

			FilePath = filePath;
			Save();
		}

Same methods

GlobalDatabase::GlobalDatabase ( ) : System