using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] strings = { "qwe", "asd", "zxc", "asd", "asd", "qwe" };
HashSet<string> set = new HashSet<string>();
foreach(string s in strings)
{
set.Add(s);
}
strings = new string[set.Count];
int i = 0;
foreach(string s in set)
{
strings[i++] = s;
}
foreach(string s in strings)
{
Console.WriteLine(s);
}
}
}
}
какая оптимизация, у человека ошибки с мемори-менеджментом