Click here to Skip to main content
15,888,351 members
Home / Discussions / C#
   

C#

 
GeneralRe: updating database Pin
Nitin.raj22-Nov-07 21:50
Nitin.raj22-Nov-07 21:50 
GeneralRe: updating database Pin
Andrei Ungureanu22-Nov-07 21:58
Andrei Ungureanu22-Nov-07 21:58 
GeneralRe: updating database Pin
Andrei Ungureanu22-Nov-07 22:07
Andrei Ungureanu22-Nov-07 22:07 
QuestionGenerics question Pin
calendarw22-Nov-07 21:04
calendarw22-Nov-07 21:04 
AnswerRe: Generics question Pin
Andrei Ungureanu22-Nov-07 21:15
Andrei Ungureanu22-Nov-07 21:15 
GeneralRe: Generics question Pin
calendarw22-Nov-07 21:39
calendarw22-Nov-07 21:39 
GeneralRe: Generics question Pin
Andrei Ungureanu22-Nov-07 21:45
Andrei Ungureanu22-Nov-07 21:45 
GeneralRe: Generics question Pin
calendarw22-Nov-07 21:57
calendarw22-Nov-07 21:57 
Thank you for your information.

And I would like to implement something like this:

public interface IReadOnlyDao
{
object GetById(object id);
IList GetAll();
}
public interface IReadOnlyDao<T, IdT> : IReadOnlyDao
{
T GetById(IdT id);
IList<T, IdT> GetAll();
}

But when I implementing the GetAll(), I got a problem that two method are same name and same parameter, is it possible to implement? or I am required to use convert the list using previous discuss method.

Thank you very much.
GeneralRe: Generics question Pin
Andrei Ungureanu22-Nov-07 22:12
Andrei Ungureanu22-Nov-07 22:12 
GeneralRe: Generics question Pin
calendarw22-Nov-07 22:14
calendarw22-Nov-07 22:14 
Questionadd text drag and drop for a console application [modified] Pin
carabutnicolae123422-Nov-07 20:20
carabutnicolae123422-Nov-07 20:20 
AnswerRe: add text drag and drop for a console application Pin
Vasudevan Deepak Kumar22-Nov-07 20:26
Vasudevan Deepak Kumar22-Nov-07 20:26 
GeneralRe: add text drag and drop for a console application Pin
carabutnicolae123422-Nov-07 20:31
carabutnicolae123422-Nov-07 20:31 
GeneralRe: add text drag and drop for a console application Pin
Vasudevan Deepak Kumar22-Nov-07 20:48
Vasudevan Deepak Kumar22-Nov-07 20:48 
GeneralRe: add text drag and drop for a console application Pin
carabutnicolae123422-Nov-07 21:22
carabutnicolae123422-Nov-07 21:22 
QuestionDisplaying data one by one using timer Pin
jacklynn_mei22-Nov-07 20:18
jacklynn_mei22-Nov-07 20:18 
AnswerRe: Displaying data one by one using timer Pin
Vasudevan Deepak Kumar22-Nov-07 20:21
Vasudevan Deepak Kumar22-Nov-07 20:21 
AnswerRe: Displaying data one by one using timer Pin
Andrei Ungureanu22-Nov-07 20:28
Andrei Ungureanu22-Nov-07 20:28 
GeneralRe: Displaying data one by one using timer Pin
jacklynn_mei22-Nov-07 20:30
jacklynn_mei22-Nov-07 20:30 
GeneralRe: Displaying data one by one using timer Pin
Andrei Ungureanu22-Nov-07 20:32
Andrei Ungureanu22-Nov-07 20:32 
GeneralRe: Displaying data one by one using timer Pin
jacklynn_mei22-Nov-07 20:39
jacklynn_mei22-Nov-07 20:39 
GeneralRe: Displaying data one by one using timer Pin
Andrei Ungureanu22-Nov-07 20:46
Andrei Ungureanu22-Nov-07 20:46 
GeneralRe: Displaying data one by one using timer Pin
jacklynn_mei22-Nov-07 21:05
jacklynn_mei22-Nov-07 21:05 
GeneralRe: Displaying data one by one using timer Pin
Andrei Ungureanu22-Nov-07 21:12
Andrei Ungureanu22-Nov-07 21:12 
GeneralRe: Displaying data one by one using timer Pin
jacklynn_mei22-Nov-07 21:25
jacklynn_mei22-Nov-07 21:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.