I try to transforma RichTextBoxFinds into a StringComparison.

Basically I hae 2 flag I'm looking at:
RichTextBoxFinds.WholeWord
& RichTextBoxFinds.MatchCase

Now, if I'm looking at String comparion the doc says: "The StringComparison
enumeration is used to specify whether a string comparison should use the
current culture or the invariant culture, word or ordinal sort rules, and be
case-sensitive or case-insensitive."
3 binary option => that should gives me 8 option! but there are only 6 :-/

If I forget about case I'm left with:

StringComparison.CurrentCulture
StringComparison.InvariantCulture
StringComparison.Ordinal

I'm thinking to the following mapping:
if RichTextBoxFinds.WholeWord is Set => StringComparison.CurrentCulture
if RichTextBoxFinds.WholeWord is NOT Set =>
StringComparison.InvariantCulture

what do you think?