Question:You are developing a method that searches a string for a substring. The method will be localized to Italy.
Your method accepts the following parameters:
The string to be searched, which is named searchList
The string for which to search, which is named searchValue
You need to write the code.
Which code segment should you use?
A CompareInfo= comparer =
gcnew CultureInfo("it-IT")::CompareInfo;
return comparer->Compare(searchList, searchValue);
B CompareInfo= comparer =
gcnew CultureInfo("it-IT")::CompareInfo;
if (comparer->IndexOf(searchList,
searchValue) > 0) {
return true;
"A Composite Solution With Just One Click" - Certification Guaranteed 303 Microsoft 70-536 Exam
} else {
return false;
}
C CultureInfo= comparer = gcnew CultureInfo("it-IT");
if (searchList->IndexOf(searchValue)
> 0) {
return true;
} else {
return false;
}
D return searchList->IndexOf(searchValue);