I'm getting started developing a revision app for WP8.1. I have good knowledge of VB and some knowledge of C#, is there any advantage to using C# over VB?
Public Function test(max as Integer)
For i As Integer = 0 To max - 1
'Do something
Next
End Function
public void test(int max)
{
for (int i=0; i<max; i++)
{
// Do something
}
}
Dim X As Object
Dim y As MyOwnType = new MyOwnType()
x = y