System.Globalization.CompareInfo.CompareInfo.LastIndexOf C# (CSharp) Method

LastIndexOf() public method

public LastIndexOf ( string source, string value, int startIndex, CompareOptions options ) : int
source string
value string
startIndex int
options CompareOptions
return int
		public virtual int LastIndexOf(string source, string value,
					       int startIndex,
					       CompareOptions options)
		{
			return(LastIndexOf (source, value, startIndex,
					    startIndex + 1,
					    options));
		}

Same methods

CompareInfo.CompareInfo::LastIndexOf ( string source, char value ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, char value, CompareOptions options ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, char value, int startIndex ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, char value, int startIndex, CompareOptions options ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, char value, int startIndex, int count ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, char value, int startIndex, int count, CompareOptions options ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, string value ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, string value, CompareOptions options ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, string value, int startIndex ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, string value, int startIndex, int count ) : int
CompareInfo.CompareInfo::LastIndexOf ( string source, string value, int startIndex, int count, CompareOptions options ) : int