You should just learn the C# syntax and translate it yourself, I think that is what most people are doing. Its really not hard.

I'll start you off:
VB Code:
  1. 'declaring a variable in vb
  2. Dim MyVar As Integer
  3. 'goes: [variablename] As [Type]
  4.  
  5. 'now in C#
  6. Integer MyVar;
  7. 'goes: [Type] [variablename];
  8. 'the semicolon is the line terminator in C# so just about every line has it at the end