Ведущий Диалог
Зарегистрирован: 13 December 2004
Сообщения: 177
Примеры кода: 4
|
Generic List<T> |
31 January 2006 15:45 |
|
|
|
|
Kto znaet kak peredelat eto pod Generic
public class CLActionsLogCol : CollectionBase
{
public CLActionsLog this[int index]
{
get{return (CLActionsLog)List[index];}
set{List[index]=value;}
}
public int Add(CLActionsLog value)
{
return List.Add(value);
}
}
public class CLActionsLog
{
} Дайте мне точку опоры и я переверну мир
Архимед
|
|