🤔

NullReferenceException#

A NullReferenceException (NRE) occurs when code tries to access members of a variable which has no value assigned.

#font: "Roboto", sans-serif #fontSize: 11 #fill: #282828; #282828 #stroke: #D0D0D0 #arrowSize: .8 #fillArrows: true #lineWidth: 2 #gutter: 1 #edges: hard #direction: right #.x: visual=none stroke=#f55 body=bold [<reference>null] [<x>?] [variable]->[null] [null]-->[?] null ? variable
warning

Declaring a reference variable does not automatically assign it a value.

Troubleshooting#