using System.Collections.Generic;
public string Ime{ get; set;}
public string Godine {get; set;}
public static void Main()
Console.WriteLine("Hello World");
List<Student> student = new List<Student>();
student.Add(new Student{ID=1, Ime="toni", Godine="30"});
student.Add(new Student{ID=2, Ime="eni", Godine="33"});
Student stud = new Student{ID=1, Ime="Mate", Godine="30"};
foreach(Student s in student){
System.Console.WriteLine("{0}:{1}:{2} ", s.ID, s.Ime, s.Godine );