docs/features/CheckedUserDefinedOperators.md
C# should support defining checked variants of the following user-defined operators so that users can opt into or out of overflow behavior as appropriate:
++ and -- unary operators (https://github.com/dotnet/csharplang/blob/main/spec/expressions.md#postfix-increment-and-decrement-operators and https://github.com/dotnet/csharplang/blob/main/spec/expressions.md#prefix-increment-and-decrement-operators).- unary operator (https://github.com/dotnet/csharplang/blob/main/spec/expressions.md#unary-minus-operator).+, -, *, and / binary operators (https://github.com/dotnet/csharplang/blob/main/spec/expressions.md#arithmetic-operators).Proposal:
Feature branch: https://github.com/dotnet/roslyn/tree/features/CheckedUserDefinedOperators