I can't use the version 0.18b in Visual Basic.NET
For example: RaceTrackPlayer event
Sub handler_RaceTrackPlayer(sender As FullMotion.LiveForSpeed.InSim.InSimHandler, e As FullMotion.LiveForSpeed.InSim.Events.RaceTrackPlayer) handles handler.RaceTrackPlayer
...
players(e.PlayerId)= New PlayerInfo(e.PlayerName, e.PlayerId,handler)
players(e.PlayerId).Car = e.Carname
...
End Sub
The result is this error messages:
['Playername' is ambiguous because multiple kinds of members with this name exist in class 'FullMotion.LiveForSpeed.InSim.Events.RaceTrackPlayer'...]
['Carname' is ambiguous because multiple kinds of members with this name exist in class 'FullMotion.LiveForSpeed.InSim.Events.RaceTrackPlayer'..."]
Visual Basic isn't case-sensitiv, he don't see difference between 'e.Carname' and 'e.CarName'.