- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
private static bool EndsWithSaurus(String s)
{
if ((s.Length > 5) &&
(s.Substring(s.Length - 6).ToLower() == "saurus"))
{
return true;
}
else
{
return false;
}
}
"some".ToLower().EndsWith("me")
хм...
private static bool EndsWithSaurus(String s,string saurus="saurus")
{
return s.EndsWith(saurus,StringComparison.Invar iantCultureIgnoreCase)
}