Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
16 lines (10 loc) · 506 Bytes

File metadata and controls

16 lines (10 loc) · 506 Bytes

Learning objectives

  • Know how and why to use standard C# operators in your own classes
  • Understand the behavior of == and !=

Out of scope

Concepts

  • operator-overloading: know when to how and why to overload operators for your own classes; understand the syntax of equality, comparison and arithmetic operators; know the syntax of user defined type conversion; know which operators cannot be overloaded

Prerequisites

  • method-overloading
  • equality
  • floating-point-numbers