TheSharperDev
Posts about C# and F#
Posts
Snippets
About
design
Nov 16, 2019
Explaining Implicit Conversion Operators in C#
C# is a typed language, and generally requires explicit casting when moving between types. But one language feature, implicit conversion, allows you to implicitly move between types. It's a handy feature that probably shouldn't be overused.