Home » C# String StartsWith() method

C# String StartsWith() method

by Online Tutorials Library

C# String StartsWith()

The C# StartsWith() method is used to check whether the beginning of this string instance matches the specified string.

Signature

Parameter

str: it is string type parameter which is used to check beginning of string.

Return

It returns boolean value.


C# String StartsWith() Method Example

Output:

False   True   

You may also like