That would be the string to char thing I talked about....
Ah. Okay, so chars aren't first class objects, they're primitives. That means, among other things, you can't test them for null this way ('bob != null').
It looks like you need to start by changing 'bob' from a char to a string. Actually, you need to rename 'bob' to something more descriptive first; that's a really horrible variable name.
It's going to be hard for me to help you seeing as how I have no experience with C# and its various APIs. Maybe someone else can help out here.
It looks like you're most of the way there. You need to find a way to read in each line of the file and, while the current line is not null, count how many of the desired char is in that line. You will likely need a loop just for that counting task (loop through each char in the string). You could also try looking at the string API and see if there are any easy ways to get the char count.