Skip to content

Instantly share code, notes, and snippets.

@richlander
Created July 20, 2015 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richlander/143bfa2ab0dd04dd3ff7 to your computer and use it in GitHub Desktop.
Save richlander/143bfa2ab0dd04dd3ff7 to your computer and use it in GitHub Desktop.
VB Read-only Auto-Properties
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