using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[] s = { "PHP", "C", "C++", "C#", "Java", "JavaScript",
"VB.NET", "VB6", "Pascal", "Objective-C", "Python" };
Console.WriteLine("Array.FindLastIndex(s, EndsWithC): {0}",
Array.FindLastIndex(s, EndsWithC));
}
private static bool EndsWithC(String s)
{
if ((s.Substring(s.Length - 1).ToLower() == "c"))
return true;
else
return false;
}
}
}
/*
run:
Array.FindLastIndex(s, EndsWithC): 9
*/