fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. uint[] hoge_old = new uint[10];
  13.  
  14. int[] hoge_new = new int[hoge_old.Length];
  15. for (int i = 0; i < hoge_old.Length;i++ )
  16. {
  17. hoge_new[i] = (int)hoge_old[i];
  18. }
  19. }
  20. }
  21. }
  22.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty