Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace CsharpCourse
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int x = 2;
- float f = x; // implicit casting
- float F = 5.5f;
- int X = (int)F; // explicit casting
- Console.WriteLine(X);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement