Skip to content

Instantly share code, notes, and snippets.

@kurulerdem
Last active September 7, 2020 08:54
Show Gist options
  • Save kurulerdem/d67012f5ab3341ec6c6296a705d41807 to your computer and use it in GitHub Desktop.
Save kurulerdem/d67012f5ab3341ec6c6296a705d41807 to your computer and use it in GitHub Desktop.
Koleksiyonlar Problemi
using System;
namespace Koleksiyonlar
{
class Program
{
static void Main(string[] args)
{
string[] employees = new string[3] { "Ahmet", "Mehmet", "Hülya" };
employees = new string[4];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment