Skip to content

Instantly share code, notes, and snippets.

@richlander
Created July 20, 2015 17:57
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/d7cd76afa0db8ac88538 to your computer and use it in GitHub Desktop.
Save richlander/d7cd76afa0db8ac88538 to your computer and use it in GitHub Desktop.
Null-Conditional operator (?.)
Dim length As Integer = If(customers?.Length, 0) ' 0 if customers is null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment