Advertisement
punidota

Untitled

Feb 29th, 2016
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.92 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ArrayList_
  4. {
  5.     class ArrayList
  6.     {
  7.         string[] arr;
  8.         public int Length;
  9.  
  10.         public ArrayList(int Size)
  11.         {
  12.             arr = new string[Size];
  13.             Length = Size;
  14.         }
  15.         public string this[int index]
  16.         {
  17.             set{ arr[index] = value; }
  18.             get{ return arr[index];  }
  19.         }
  20.         public void Add(string s, int n)
  21.         {
  22.             var List = new ArrayList(Size: n);
  23.             for (int i = 0; i < List.Length; i++)
  24.             {
  25.                 List[i] = s;
  26.                 Console.Write(List[i] + " ");
  27.             }
  28.        
  29.         }
  30.     }
  31.  
  32.     class Program
  33.     {
  34.         static void Main()
  35.         {
  36.             var List = new ArrayList(Size: 3);
  37.             List.Add("ggg", 1);
  38.             List.Add("gbg", 1);
  39.             List.Add("ggd", 1);
  40.             Console.ReadLine();
  41.         }
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement