// // CompareMethod.cs // // Author: // Martin Adoue (martin@cwanet.com) // // (C) 2002 Martin Adoue // namespace Microsoft.VisualBasic { /// /// The CompareMethod enumeration contains constants used to determine the /// way strings are compared when using functions such as InStr and StrComp. /// These constants can be used anywhere in your code. /// public enum CompareMethod : int { /// /// Performs a binary comparison /// Binary = 0, /// /// Performs a textual comparison /// Text = 1 }; }