[lang-ref] ( string_contains ) ( csharp )

[Fact]
public void TestStringContains()
{
    // text.Contains(s)

    string text = "Good morning";
    string s = "mo";

    bool r = text.Contains(s);

    Assert.True(r);
}