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:
'declaring a variable in vb Dim MyVar As Integer 'goes: [variablename] As [Type] 'now in C# Integer MyVar; 'goes: [Type] [variablename]; 'the semicolon is the line terminator in C# so just about every line has it at the end




Reply With Quote