mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 21:34:06 -06:00
251 B
251 B
Type casting is when you tell the complier to temporarily treat a variable as a different type.
int first = 5;
int second = 3;
decimal quotient = (decimal)first / (decimal)second;
Console.WriteLine(quotient);
Links:
202404131836