Causes strings to be compared based on their text representations.
/optioncompare:text
Text-based string comparisons are based on a case-insensitive text sort order determined by your system's locale. A typical text sort order is shown in the following example:
(A=a) < (À = à) < (B=b) < (E=e) < (Ê = ê) < (Z=z) < (Ø = ø)
The following code compiles myfile.vb and uses text-based string comparisons:
vbc /optioncompare:text myfile.vb