fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. String str = "Kiran Bheemarti";
  10.  
  11. List<byte> bytes = new List<Byte>(Encoding.ASCII.GetBytes(str));
  12.  
  13.  
  14. Console.Read();
  15. }
  16. }
  17.  
Success #stdin #stdout 0.02s 33880KB
stdin
Standard input is empty
stdout
Standard output is empty