Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public string FirstTwo(string s)
{
var two = s.Take(2).ToArray();
return string.Join("", two);
}
public IEnumerable<string> FirstTwo(string s)
{
return s.Split(' ').SelectMany(x=>
{
var two = x.Take(2).ToArray();
return string.Join("", two);
});
}