Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     MyList myList = new MyList();
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            MyList <string> isimler = new MyList <string>();

            isimler.Add("Seyda");
        }
Ejemplo n.º 3
0
        static void Main(string[] args)
        {
            MyList <string> names = new MyList <string>();

            names.Add("Jack");
        }
Ejemplo n.º 4
0
        static void Main(string[] args)
        {
            MyList <string> isimler = new MyList <string>(); //T=String class türünde gönderdik//****"Koleksiyonlar" arka planda bir "array" yönetir.

            isimler.Add("Mehmet");                           //" <> " Class tanımı.    //Sınıflar yeşil renktedir.
        }
Ejemplo n.º 5
0
        static void Main(string[] args)
        {
            MyList <string> isimler = new MyList <string>();

            isimler.Add("Yasenur");
        }
Ejemplo n.º 6
0
        static void Main(string[] args)
        {
            MyList <string> isimler = new MyList <string>();  // tip bağimli çalışır şu anda

            isimler.Add("Engin");
        }
Ejemplo n.º 7
0
        static void Main(string[] args)
        {
            MyList <string> isimler = new MyList <string>();

            isimler.
        }
Ejemplo n.º 8
0
        static void Main(string[] args)
        {
            MyList <int> isimler = new MyList <int>();

            isimler.Add(12);
        }
Ejemplo n.º 9
0
        static void Main(string[] args)
        {
            MyList <string> ismler = new MyList <string>();

            ismler.Add("ARİF SELİM");
        }
Ejemplo n.º 10
0
        static void Main(string[] args)
        {
            MyList <string> myList = new MyList <string>();

            myList.Add("Orçun");
        }
Ejemplo n.º 11
0
 static void Main(string[] args)
 {
     MyList <string> list = new MyList <string>();
 }
Ejemplo n.º 12
0
        static void Main(string[] args)
        {
            MyList <String> isimler = new MyList <String>();

            isimler.Add("Kadir");
        }
Ejemplo n.º 13
0
        static void Main(string[] args)
        {
            MyList <string> alphabets = new MyList <string>();

            alphabets.Add("A");
        }
Ejemplo n.º 14
0
 static void Main(string[] args)
 {
     //List gibi birşeyi biz nasoıl yazardık.
     MyList isimler = new MyList();
 }
Ejemplo n.º 15
0
        static void Main(string[] args)
        {
            MyList isimler = new MyList();

            isimler.Add("Engin");
        }