simple code to find the Occurrences of a Character in a String using LINQ
Dim count As Integer = (From s In testString.ToCharArray Where s = "i" Select s).Countthanks-Shinu