Radek Cieślik
Radek Cieślik
Do you mean something like that? ``` using Sharprompt; var firstValue = Prompt.Input("Please provide default value"); var defaultForSecondValue = string.IsNullOrWhiteSpace(firstValue) ? null : firstValue; var secondValue = Prompt.Input("Please provide second...
I'm not the author or the owner of this library, but I've created PR which hopefully covers your issue: [https://github.com/shibayan/Sharprompt/pull/300](url) The approach is different than adding shortcut to clear default...
As I said before, I'm not the author/owner of this library, so @shibayan must decide. For me, reseting default value is strange behaviour. Also, I'm against using reflections as long...