using System;
class Program
{
static void Main() {
string str = "csharp programming";
bool result = Char.IsLetter(str, 4);
Console.WriteLine(result);
str = "csharp programming";
result = Char.IsLetter(str, 6);
Console.WriteLine(result);
}
}
/*
run:
True
False
*/