fork download
  1. using System;
  2.  
  3. class Program
  4. {
  5. public static int data = 5;
  6.  
  7. static void Main()
  8. {
  9. string word = "Ytllo";
  10. Console.WriteLine(word);
  11.  
  12. // Доступ до статичного поля через ім'я класу, а не через екземпляр
  13. Console.WriteLine(Program.data);
  14.  
  15. string word1 = "jcjcsjcjsc";
  16. Console.WriteLine(word1);
  17. }
  18. }
Success #stdin #stdout 0.03s 26140KB
stdin
Standard input is empty
stdout
Ytllo
5
jcjcsjcjsc