fork(3) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. byte[] foo = new byte[] { 1, 2, 3, 4, 5 };
  8. string base64 = Convert.ToBase64String(foo);
  9. Console.WriteLine(base64);
  10. }
  11. }
Success #stdin #stdout 0.02s 33864KB
stdin
Standard input is empty
stdout
AQIDBAU=