DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
C# Function - EndsWith
// description of your code here
string sentence = "This is dot net zone snippet";
if (sentence.EndsWith("snippet"))
{
Console.WriteLine("String ends with snippet");
return;
}
else
{
Console.WriteLine("String does not ends with snippet");
return;
}





