fork download
  1. public class Program {
  2. public static void Main() {
  3. var nome = new Name();
  4. }
  5. }
  6.  
  7. public struct Name {
  8. private bool inicializado;
  9. private char[] nome;
  10. public char[] Nome { get {
  11. if (!inicializado) {
  12. nome = new char[32];
  13. inicializado = true;
  14. }
  15. return nome;
  16. }}
  17. }
  18.  
  19. //https://pt.stackoverflow.com/q/258641/101
Success #stdin #stdout 0.01s 13828KB
stdin
Standard input is empty
stdout
Standard output is empty