- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
private ArrayList GetSubscribers(string condition)
{
ArrayList subscribers = new ArrayList();
ArrayList lst = new user_category_notification().Factory.GetItems(condition, "user_category_notification.id_user");
ArrayList distinc_lst = new ArrayList();
ArrayList distinc_lst_ids = new ArrayList();
ArrayList lst_ids = new ArrayList();
for (int i = 0; i < lst.Count; i++)
{
lst_ids.Add(((user_category_notification) lst[i]).id_user);
}
for (int i = 0; i < lst_ids.Count;i++ )
{
if (distinc_lst_ids.Contains(lst_ids[i])) continue;
else
{
distinc_lst.Add(lst[i]);
distinc_lst_ids.Add(lst_ids[i]);
}
}
foreach (user_category_notification _un in distinc_lst)
{
user _current = (user)new user().Factory.GetByID(_un.id_user);
subscribers.Add(_current);
}
return subscribers;
}
guest 03.10.2009 15:53 # 0
bugotrep 03.10.2009 15:59 # 0
П.П. Извините мой плохый руский, я не писал очень долго.
tonic 05.10.2009 15:24 # 0
По крайней мере, автор кода знал C# хуже чем вы русский язык
guest 03.10.2009 16:33 # −1
> distinc_lst_ids
Сишная зараза неискоренима
bugotrep 03.10.2009 18:23 # −2
tonic 05.10.2009 15:29 # +1
Кстати, кто-нибудь знает почему говнокодеры так любят ArrayList? Сам неоднократно сталкивался.
guest 31.10.2009 04:52 # +1