Of what significance is the underlines in code like the following
Code:
Public Sub New(ByVal newBalance As Integer)
'Sets the player's image and name that is displayed in the picture frame in the UI.
Me._imageProp = My.Settings.PlayerImage
Me._nameProp = My.Settings.PlayerName
Me._handProp = New BlackJackHand
Me._balanceProp = newBalance
End Sub
A beginners question, for sure!