fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace たぷるテスト___
  7. {
  8. class Program
  9. {
  10. static Tuple<int, int, string> F()
  11. {
  12. return Tuple.Create(1, 2, "hoge");
  13. }
  14. static void Main(string[] args)
  15. {
  16. var T = F();
  17.  
  18. Console.WriteLine("{0},{1},{2}", T.Item1, T.Item2, T.Item3);
  19. return ;
  20. }
  21. }
  22. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(10,16): error CS0246: The type or namespace name `Tuple' could not be found. Are you missing a using directive or an assembly reference?
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty