Aside from books/blogs, a good way to learn the other side of the C#/VB wall is to write some code in C#, compile it, and open the DLL in Reflector and view as VB code. This will allow you to answer your own questions about VB.NET.
For example, suppose you want to see how to do generics in VB.NET. You write a simple library in C#:
void SomeMethod()
{
List<int> list = new List<int>();
}
Compile this, then open in Reflector, and it will show you:
Sub SomeMethod
Dim list as List(Of Integer) = New List(Of Integer)
End Sub
or something like that...
If you know how to do it in C#, you can probably teach yourself how to do it in VB.NET this way easier than looking for samples online.