I commented on issue #20 - but my issue was slightly different.
Within the list is "Junior" - which in my data at least is also a first name.
I saw the fix you made with the enum Prefer, I wondered whether you were considering the same for the Title? So we could have a Prefer.FirstOverTitle?
It is actually an easy fix on user end, so I wouldn't feel any urgency, just be nice to set a flag for it.
if (testName.Title != "" && testName.First == "")
{
sb.Append("" + "þ" + testName.Title + "þ" + testName.Middle + "þ" + testName.Last + "þ" + testName.Suffix + Environment.NewLine);
}
else
{
sb.Append(testName.Title + "þ" + testName.First + "þ" + testName.Middle + "þ" + testName.Last + "þ" + testName.Suffix + Environment.NewLine);
}
Nice tool btw very good and I have tried a few of these and written a couple myself - variation is just a killer with names.
I commented on issue #20 - but my issue was slightly different.
Within the list is "Junior" - which in my data at least is also a first name.
I saw the fix you made with the enum Prefer, I wondered whether you were considering the same for the Title? So we could have a Prefer.FirstOverTitle?
It is actually an easy fix on user end, so I wouldn't feel any urgency, just be nice to set a flag for it.
Nice tool btw very good and I have tried a few of these and written a couple myself - variation is just a killer with names.