In general, reading C# shouldn't be too difficult. Most programming logic is very similar, such as:
ForEach x As String In someStringCollection
...
Next
vs.
foreach(string x in someStringCollection){
...
}
Most of the code you are going to see involves members defined by the .NET framework which will be the same across the CLR languages. Search for some .NET samples in C# and see if you can understand them. I think you'll find most of it to be fairly intuitive.
-Peter
|