hi.
i have a piece of code that i wanna know that in how many miliseconds it would be run.
Public Sub TurnLeft(ByVal speed As Single)
Dim timer As Single
If Not IsNothing(Me._DriveActor) Then
'command below
Me._DriveActor.Turn(speed)
End If
End Sub
i know that we have timer class but you can not get the number of milisecond that it would take.
thanks in advance.