using System.Diagnostics;
public static void Main()
var letters = new char[] { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };
var timer = new Stopwatch();
for(var i = 0; i < trials; i++)
Console.WriteLine("Time for LINQ = " + timer.ElapsedMilliseconds + " msec");
for(var i = 0; i < trials; i++)
Console.WriteLine("Time for Bit masks = " + timer.ElapsedMilliseconds + " msec");
Console.WriteLine("Done");
public static bool IsVowelLinq(char c)
char[] vowels = new[] { 'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U' };
return vowels.Any(ch => ch == c);
private static int VowelMask = (1 << 1) | (1 << 5) | (1 << 9) | (1 << 15) | (1 << 21);
public static bool IsVowelBitArithmetic(char c)
return (c > 64) && ((VowelMask & (1 << ((c | 0x20) % 32))) != 0);