fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. byte[] myBytes = BitConverter.GetBytes(255);
  8. ushort myVal = 0;
  9. myVal = BitConverter.ToUInt16(myBytes, 0);
  10. Console.WriteLine(myVal);
  11. }
  12. }
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
255