[lang-ref] ( string_starts_with ) ( csharp )
[Fact]
public void TestStringStartsWith()
{
// text.StartsWith(s)
string text = "Good morning";
string s = "Good";
bool r = text.StartsWith(s);
Assert.True(r);
}
[Fact]
public void TestStringStartsWith()
{
// text.StartsWith(s)
string text = "Good morning";
string s = "Good";
bool r = text.StartsWith(s);
Assert.True(r);
}