Steve Dunn
Steve Dunn
This was released in 4.0.9 - thanks for the input!
Thanks for the docs @jeffward01 ! I've updated the [Wiki landing page](https://github.com/SteveDunn/Vogen/wiki/Welcome-to-Vogen!) with an FAQ section and linked to a page. If you could copy your very handy information there,...
I'll add this to the new documentation site that I recently did: https://stevedunn.github.io/Vogen/vogen.html Thanks again!
Thank you for these tips. I've added them to the documentation in the next release.
That's a great idea - thanks @glen-84 ! I'll take a look at implementing that soon.
Thanks for the feedback @glen-84 - sorry that this feature has taken so long to implement. I haven't had much time lately. Re. your suggestion above: are you saying that...
Thanks for the report @dmitriyi-affinity. The idea of the `Validate` method is to just return `Validation.Ok` or `Validation.Invalid("[what is wrong with the value")` You can change the type of exception...
I think what we could do here is, if the custom exception specified is `ArgumentException`, then pass in `value`.
I'm looking again at this one. The `From` method calls `Validate` **if there is one**. It doesn't know what exceptions are thrown from this user-supplied method. The generated code for...
I'm about to add `TryFrom` which will look like `bool TryFrom(string input, out Name result)`. I could also add something like `Either TryFrom(input)`.