Is it possible to do sn automatic implicit conversion without casting? I have a struct that is working basically as a custom int (int with some modifications to the value)
I have implicit and explicit operators setup.
What i have to do is: CustomInt value = (CustomInt)12;
What i want to do is CustomInt value = 12;
Is this possible?