C# String EndsWith() Method

You are Here:

C# String EndsWith()

The EndsWith() method checks whether the specified string matches the end of the given string or not.

Example

C# Compiler
using System; namespace myApp { class Program { static void Main(string[] args) { string s1 = "John doe"; string s2 = "doe"; string s3 = "do"; Console.WriteLine(s1.EndsWith(s2)); Console.WriteLine(s1.EndsWith(s3)); } } }

Output

True False

Syntax

public bool s1.EndsWith(s2)

Parameter Values

ValueTypeExplanation
s1RequiredSpecifies the given string.
s2RequiredSpecifies the string to be matched.

Return Value

ValueExplanation
TrueIf the specified string matches the end of the given string.
FalseIf the specified string does not matches the end of the given string

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on C# with examples for quick and easy learning.

We are working to cover every Single Concept in C#.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author