Lecture overview -- Keyboard shortcut: 'u'  Previous page: Boxing and Unboxing -- Keyboard shortcut: 'p'  Next page: Organization of C# Programs [Section] -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Reference types, Value types, and Patterns - slide 16 : 29

Nullable types

A variable of reference type can be null

A variable of value type cannot be null

A variable of nullable value type can be null

intseq-naive.cs
An integer sequence with Min and Max operations - a naive attempt.
intseq.cs
An integer sequence with Min and Max operations - with int?.
app.cs
A client of IntSequence.
output
Program output.