Advertisement
bero_0401

Casting

Aug 16th, 2024
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | Source Code | 0 0
  1.  
  2. namespace CsharpCourse
  3. {
  4.     internal class Program
  5.     {
  6.         static void Main(string[] args)
  7.         {
  8.  
  9.             int x = 2;
  10.             float f = x; // implicit casting
  11.  
  12.             float F = 5.5f;
  13.             int X = (int)F; // explicit casting
  14.             Console.WriteLine(X);
  15.         }
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement