I made a generic UI class called DraggableLayout. It's a treelike Layout that nest within other DraggableLayout
The thing is, I need the children to be able to search for the DraggableLayout when I am looping through the list of Controls in parents.
foreach (var tab in Parents)
{
if (tab is DraggableLayout) //Error CS0305
{
//Do Something
}
}
When I do the above, I need to specifiy the type. Is it possible to ignore the and search for a parent generic class ?
What you can do is:
Or with an extension method: