Home
Options

Util.ReadLine - suggestions (3rd) parameter

In (licensed) LP v4.58.00, I have not been able to raise the suggestions stored in the third parameter. Here's my code snippet that contains two 'suggested' options. I've pressed many keys and moused around a good bit. Thanks for any thoughts.
string date = Util.ReadLine
(
   "Enter the log file date: "       // prompt
  ,"2015-01-01"                      // default
  ,new[] {"2015-11-11","2015-11-22"} // suggestions
);
date.Dump();

Comments

Sign In or Register to comment.