段落内の非スペース文字の数をカウントするコンソールアプリケーションを作成しましたが、正しく機能していません。
int l=0;
string s;
Console.WriteLine("Enter Paragraph: ");
s = Console.ReadLine();
foreach (char c in s)
{
if (char.IsLetter(c))
{
l++;
}
}
l = Convert.ToInt32(s.Length);
Console.WriteLine("Your Paragraph Length is: " + l);
Console.ReadLine();