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

LastIndexOf() public method

public LastIndexOf ( string source, char value, int startIndex, int count ) : int
source string
value char
startIndex int
count int
return int
		public virtual int LastIndexOf(string source, char value,
					       int startIndex, int count)
		{
			return(LastIndexOf (source, value, startIndex, count,
					    CompareOptions.None));
		}

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, 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, CompareOptions options ) : 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