Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 827 Bytes

File metadata and controls

22 lines (14 loc) · 827 Bytes

Readme - Code Samples for Chapter 5, Operators and Casts

Operators and Casts explains the C# operators, and you also learn how to overload standard operators for custom types.

This chapter contains the following code samples:

  • OperatorsSample
  • BinaryCalculations
  • OperatorOverloadingSample (overloading the + operator)
  • EqualitySample
  • CustomIndexerSample (creating a custom indexer)
  • UserDefinedConversion

For code comments and issues please check Professional C#'s GitHub Repository

Please check my blog csharp.christiannagel.com for additional information for topics covered in the book.

Thank you!

Updates with C# 10

See Updates with C# 10