C#: Determine whether the string "birds" is a substring of a familiar
Write a C# Sharp program to determine whether the string "birds" is a substring of a familiar string.
Note : Quotation ‘two birds with one stone'.

Sample Solution:-
C# Sharp Code:
Sample Output:
'birds' is in the string 'Kill two birds with one stone': True 'birds begins at character position 10
Flowchart :

C# Sharp Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a C# Sharp program to concatenate the array values of strings.
Next: Write a C# Sharp program to creates two string objects with different values. When it calls the Copy method to assign the first value to the second string, the output indicates that the strings represent different object references although their values are now equal. On the other hand, when the first string is assigned to the second string, the two strings have identical values because they represent the same object reference.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.