Created
July 20, 2015 17:49
VB Read-only Auto-Properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Class Customer | |
Public ReadOnly Property First As String = "Jane" | |
Public ReadOnly Property Last As String = "Doe" | |
End Class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment