show/hide this revision's text 9 deleted 21 characters in body

Longhorn213 almost has the right answer, but as as Sean Chambers and bdukes say, you should use

ctrl is IInterfaceToFind

instead of

ctrl.GetType() == aTypeVariable

The reason why is that if you use .GetType(), you will get the true type of an object, not necessarily what it can also be cast to in its inheritance/Interface implementation chain. Also, .GetType() will never return an abstract type/interface since you can't new up an abstract type or interface. GetType() returns concrete types only.

The reason this doesn't work

if(ctrl is typeToFind)

Is because the type of the variable typeToFind is actually System.RuntimeType. You've only , not the type you've set its value tothe type you are looking for. Example, if you set a string's value to "foo", its type is still string not "foo". I hope that makes sense. It's very easy to get confused when working with types. I'm chronically confused when working with them.

The most import thing to note about longhorn213's answer is that you have to use recursion or you may miss some of the controls on the page.

Although we have a working solution here, I too would love to see if there is a more succinct way to do this with LINQ.

show/hide this revision's text 8 Reordered paragraphs for continuity/clarity

Longhorn213 almost has the right answer, but as as Sean Chambers and bdukes say, you should use

ctrl is IInterfaceToFind

instead of

ctrl.GetType() == aTypeVariable

The reason why is that if you use .GetType(), you will get the true type of an object, not necessarily what it can also be cast to in its inheritance/Interface implementation chain. Also, .GetType() will never return an abstract type/interface since you can't new up an abstract type or interface. GetType() returns concrete types only.

The most import thing to note is that you have to use recursion as longhorn213 points out or you may miss some of the controls on the page.

HOWEVER, I too would love to see if there is a more succinct way to do this with LINQ.

FYI Chris, the reason this doesn't work

if(ctrl is typeToFind)

Is because the type of the variable typeToFind is actually System.RuntimeType. You've only set its value to the type you are looking for. Example, if you set a string's value to "foo", its type is still string not "foo". I hope that makes sense. It's very easy to get confused when working with types. I'm chronically confused when working with them.

The most import thing to note about longhorn213's answer is that you have to use recursion or you may miss some of the controls on the page.

Although we have a working solution here, I too would love to see if there is a more succinct way to do this with LINQ.

show/hide this revision's text 7 added 155 characters in body

Longhorn213 almost has the right answer, but as as Sean Chambers and bdukes say, you should use

ctrl is IInterfaceToFind

instead of

ctrl.GetType() == aTypeVariable

The reason why is that if you use .GetType(), you will get the true type of an object, not necessarily what it can also be cast to in its inheritance/Interface implementation chain. Also, .GetType() will never return an abstract type/interface since you can't new up an abstract type or interface. GetType() returns concrete types only.

The most import thing to note is that you have to use recursion as longhorn213 points out or you may miss some of the controls on the page.

HOWEVER, I too would love to see if there is a more succinct way to do this with LINQ.

FYI Chris, the reason this doesn't work

if(ctrl is typeToFind)

Is because the type of the variable typeToFind is actually System.RuntimeType. Only You've only set its value is to the type you are looking for. Example, if you set it a string's value to , not the "foo", its type of object it is . still string not "foo". I hope that makes sense. It's very easy to get confused when working with types.

show/hide this revision's text 6 added 5 characters in body
show/hide this revision's text 5 added 239 characters in body
show/hide this revision's text 4 added 1 characters in body
show/hide this revision's text 3 added 15 characters in body
show/hide this revision's text 2 added 38 characters in body
show/hide this revision's text 1