Lecture overview -- Keyboard shortcut: 'u'  Previous page: Value types -- Keyboard shortcut: 'p'  Next page: Structs in C# -- 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 9 : 29

Illustration of variables of value types
Assume that the type Point is a value type
Point p1 = new Point(1.0, 2.0),
      p2 = new Point(3.0, 4.0);

p1 = p2;