Skip to content

Instantly share code, notes, and snippets.

@richlander
Created July 20, 2015 17:49
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