C# - Explicit type conversions
By using an explicit conversion, you can specify exactly what type you want to work with. Thanks to this we can overwrite automatic conversion.C#
Other pieces of example codes:y = (ushort)(x * y)
y = (short)(x * y)
z = (int)(x * y)
y = (uint)(x * y)
y =(double)(x * y)
y = (sbyte)(x * y)
Explicit type conversions in another programming language: