FECipherVit.HistoryChecker.AddHistory C# (CSharp) Method

AddHistory() public method

public AddHistory ( string UserName, string Time, string ActionType, User User ) : void
UserName string
Time string
ActionType string
User User
return void
        public void AddHistory(string UserName, string Time, string ActionType, User User)
        {
            listBox.Items.Add(UserName + " " + Time + " " + "\"" + ActionType + "\"");
            Historys.Add(User);
        }