Answers for "c# search in a string"

C#
3

how to look for substring in string in c#

String phrase = "this is the ultimate string";

Console.WriteLine(phrase.Contains("this")); //returns True
Console.WriteLine(phrase.Contains("python")); //returns False
Posted by: Guest on April-29-2020
0

search letters in list c#

Length of the string is : 15
Posted by: Guest on October-02-2020

C# Answers by Framework

Browse Popular Code Answers by Language