fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var teste = new Teste();
  6. teste.a = 1;
  7. teste.c = "abc".ToCharArray();
  8. WriteLine(teste.a);
  9. WriteLine(teste.c);
  10. }
  11. }
  12.  
  13. struct Teste {
  14. public int a;
  15. public char[] c;
  16. }
  17.  
  18. //https://pt.stackoverflow.com/q/106470/101
Success #stdin #stdout 0.02s 15888KB
stdin
Standard input is empty
stdout
1
abc