Tagged Questions

5
votes
5answers
5k views

VB.NET If Statement and the Colon

Here is an interesting piece of code that my fellow team members were just having a slightly heated discussion about... Dim fred As Integer If True Then fred = 5 : fred = 3 : fred = 6 Else fred ...