A bit more investigation, so the future calls wont be Monkey see, Monkey do ..
The constructors for the Autodesk.AutoCAD.EditorInput.
PromptKeywordOptions class are :
PromptKeywordOptions(
System.String message)
// and
PromptKeywordOptions(
System.String messageAndKeywords,
System.String globalKeywords)
The error exception message --->
System.ArgumentException: No bracketed keyword listreferred to the format of the
messageAndKeywords string, not the
globalKeywords string as I assumed < yep, THAT word again >
SO :
This works
keywordOptions = new PromptKeywordOptions("\n Choose dude [Yes/No]", "Yes No");
This spits the dummy at run time
keywordOptions = new PromptKeywordOptions("\n Choose dude", "Yes No");
Hope that assists anyone following the breadcrumbs.
