End Google Ads 201810 - BS.net 01 --> I know how to overload operators for my own classes. My question is whether it's possible to overload operators for built-in value types. For example, can you overload the ^ operator in such a way that:

int result = 2 ^ 3; // Sets result to a value of 8

Thanks!