fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int value = 255;
  8. string hexValue = value.ToString("X");
  9. System.Console.WriteLine(hexValue);
  10. }
  11. }
Success #stdin #stdout 0s 29672KB
stdin
Standard input is empty
stdout
FF