ArgsTests.CLI.HumanInputItem.HumanInputItem C# (CSharp) Method

HumanInputItem() public method

public HumanInputItem ( ConsoleKeyInfo key, System.TimeSpan preDelay, System.TimeSpan postDelay ) : System
key System.ConsoleKeyInfo
preDelay System.TimeSpan
postDelay System.TimeSpan
return System
        public HumanInputItem(ConsoleKeyInfo key, TimeSpan preDelay, TimeSpan postDelay)
        {
            this.Key = key;
            this.PreDelay = preDelay;
            this.PostDelay = postDelay;
        }
HumanInputItem