Click here to Skip to main content
15,891,204 members
Home / Discussions / C#
   

C#

 
AnswerRe: Question For List Generics Pin
0x3c013-Jun-09 23:22
0x3c013-Jun-09 23:22 
GeneralRe: Question For List Generics Pin
Sider8913-Jun-09 23:36
Sider8913-Jun-09 23:36 
GeneralRe: Question For List Generics Pin
0x3c014-Jun-09 0:57
0x3c014-Jun-09 0:57 
GeneralRe: Question For List Generics Pin
Sider8914-Jun-09 1:04
Sider8914-Jun-09 1:04 
GeneralRe: Question For List Generics Pin
0x3c014-Jun-09 1:36
0x3c014-Jun-09 1:36 
GeneralRe: Question For List Generics Pin
Sider8914-Jun-09 5:30
Sider8914-Jun-09 5:30 
GeneralRe: Question For List Generics Pin
0x3c014-Jun-09 5:47
0x3c014-Jun-09 5:47 
GeneralRe: Question For List Generics Pin
Sider8914-Jun-09 19:39
Sider8914-Jun-09 19:39 
Maybe it'll work, but in my project I have many classes and Functions with generics and it's almost impossible to change all Big Grin | :-D
I think I solve this like this, I write it:


public delegate List< T > LoadChildHandler< T >(int parentId);

public class ObjectBase< T >
{
public int ID { get; set; }
}


public class Country : ObjectBase< Country >
{

public LoadChildHandler< City > LoadChild; // I just declare delegate in child class and there are not resist between City and Country, well works fine

public string CountryName { get; set; }

public List< City > Cities
{
get
{
return LoadChild(ID);
}
}
}



and so all I want it to do in a different way...
Now I must dclare this delegate in other classes too, it would be fine to do solve this problem, without declaring in other classes and not such torture Smile | :)

C# Developer

QuestionClosing and recreating a form Pin
SimpleData13-Jun-09 22:43
SimpleData13-Jun-09 22:43 
AnswerRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 0:14
Henry Minute14-Jun-09 0:14 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 0:15
SimpleData14-Jun-09 0:15 
GeneralRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 0:31
Henry Minute14-Jun-09 0:31 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 3:05
SimpleData14-Jun-09 3:05 
GeneralRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 3:13
Henry Minute14-Jun-09 3:13 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 3:36
SimpleData14-Jun-09 3:36 
GeneralRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 3:40
Henry Minute14-Jun-09 3:40 
AnswerRe: Closing and recreating a form Pin
Luc Pattyn14-Jun-09 4:14
sitebuilderLuc Pattyn14-Jun-09 4:14 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 4:43
SimpleData14-Jun-09 4:43 
GeneralRe: Closing and recreating a form Pin
Luc Pattyn14-Jun-09 4:49
sitebuilderLuc Pattyn14-Jun-09 4:49 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 4:52
SimpleData14-Jun-09 4:52 
GeneralRe: Closing and recreating a form Pin
Dave Kreskowiak14-Jun-09 4:58
mveDave Kreskowiak14-Jun-09 4:58 
GeneralRe: Closing and recreating a form Pin
Dave Kreskowiak14-Jun-09 4:55
mveDave Kreskowiak14-Jun-09 4:55 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 5:07
SimpleData14-Jun-09 5:07 
GeneralRe: Closing and recreating a form Pin
Dave Kreskowiak14-Jun-09 5:08
mveDave Kreskowiak14-Jun-09 5:08 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 5:13
SimpleData14-Jun-09 5:13 

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.