VB.NET Code - Do you know not to put Exit Sub before End Sub?
Loading last updated info...
This is often a bad practice if you already are ending Sub you don't need another line.
Sub MySub...End SubExit sub
❌ Figure: Figure: Bad example
Sub MySub...End sub
✅ Figure: Figure: Good example