Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication2
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. string [] pole = new string[3];
  13. {
  14. pole[0] = kamila;
  15. Console.WriteLine("1.jméno = " + pole[0]);
  16. pole[1] = tereza;
  17. Console.WriteLine(pole[1]);
  18. }
  19. }
  20.  
  21. public static string kamila { get; set; }
  22.  
  23. public static string tereza { get; set; }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement