fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int k = 158;
  8. sbyte t = (sbyte)k;
  9. byte b=(byte)t;
  10.  
  11. Console.WriteLine(b);
  12. Console.WriteLine();
  13.  
  14. int asd = Convert.ToInt32(b);
  15.  
  16. Console.WriteLine(asd);
  17. }
  18. }
Success #stdin #stdout 0.03s 34704KB
stdin
Standard input is empty
stdout
158

158