VB.NET Culture and Number Format
using System.Globalization
Public Override Function IndexOf (source As String, value As Char) As Integer
Public Overridable Function IndexOf (source As String, value As String) As Integer
Public Overridable Function IndexOf(source As String, value As Char, options As compareOptions) As integer
Public Overridable Function IndexOf(source As String, value As Char, startIndex As Integer) As Integer
Public overridable Function IndexOf(source As String, value As String, options s CompareOptions) As Integer
Public Overridable Function IndexOf(source As String, Value As String, startIndex As Integer) As Integer
Public Overridable Function IndexOf(source As string, value As Char, startIndex As Integer, options As CompareOptions) As Integer
Public Overridable Function IndexOf(source As String, value As Char, startIndex As Integer, count As integer) As Integer
Public Overridable Function IndexOf(source As String, value As String, startIndex As Integer, options As CompareOptions) As integer
Public Overridable Function IndexOf(source As String, value As String, startIndex As Integer, count As Integer) As Integer
Public Overridable Function IndexOf(source As String, value As Char, startIndex As Integer, count As Integer, Options As CompareOptions) As Integer
Public Overridable Function IndexOf(source As String, value As String, startIndex As Integer, count As Integer, Options As CompareOptions) As Integer
Internationalization (I18n) Method Overview
Searches for the specified value and returns the zero-based
index of the first occurrence within the source string (or substring).
For more information see Microsoft's
MSDN online documentation.
I18n Issues
We flag this method to ensure that the CompareInfo object, through which
this method is called, has been created for the correct culture.
To create a CompareInfo object for any culture,
use the GetCompareInfo method.
VB.NET Culture and Number Format
|