Created
July 20, 2015 17:49
-
-
Save richlander/143bfa2ab0dd04dd3ff7 to your computer and use it in GitHub Desktop.
VB Read-only Auto-Properties
This file contains hidden or 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