fork(1) download
  1. using System;
  2.  
  3. namespace A {
  4. class Foo {
  5. public static void Main(string[] args) {
  6. Byte b = Convert.ToByte(100);
  7. Byte b2 = Convert.ToByte(0xff);
  8. Console.WriteLine(b);
  9. Console.WriteLine(b2);
  10. }
  11. }
  12. }
Success #stdin #stdout 0.03s 34760KB
stdin
Standard input is empty
stdout
100
255