Casting a UserControl as a specific type of user control - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:21:39Z http://stackoverflow.com/feeds/question/227121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/227121/casting-a-usercontrol-as-a-specific-type-of-user-control 3 Casting a UserControl as a specific type of user control rockstardev 2008-10-22T18:58:51Z 2008-10-22T19:31:11Z <p>Is there a way to cast a user control as a specific user control so I have access to it's public properties? Basicly I'm foreaching through a placeholder's controls collection and I'm trying to access the user control's public properties.</p> <p><code> foreach(UserControl uc in plhMediaBuys.Controls) { uc.PulblicPropertyIWantAccessTo; }</p> <p></code></p> http://stackoverflow.com/questions/227121/casting-a-usercontrol-as-a-specific-type-of-user-control/227127#227127 3 Answer by Kon M for Casting a UserControl as a specific type of user control Kon M 2008-10-22T19:00:35Z 2008-10-22T19:00:35Z <pre><code>foreach(UserControl uc in plhMediaBuys.Controls) { if (uc is MySpecificType) { return (uc as MySpecificType).PulblicPropertyIWantAccessTo; } } </code></pre> http://stackoverflow.com/questions/227121/casting-a-usercontrol-as-a-specific-type-of-user-control/227133#227133 6 Answer by Chris Pietschmann for Casting a UserControl as a specific type of user control Chris Pietschmann 2008-10-22T19:01:39Z 2008-10-22T19:01:39Z <pre><code>foreach(UserControl uc in plhMediaBuys.Controls) { MyControl c = uc as MyControl; if (c != null) { c.PublicPropertyIWantAccessTo; } } </code></pre> http://stackoverflow.com/questions/227121/casting-a-usercontrol-as-a-specific-type-of-user-control/227139#227139 1 Answer by SoloBold for Casting a UserControl as a specific type of user control SoloBold 2008-10-22T19:04:08Z 2008-10-22T19:31:11Z <h2>Casting</h2> <p>I prefer to use:</p> <pre><code>foreach(UserControl uc in plhMediaBuys.Controls) { ParticularUCType myControl = uc as ParticularUCType; if (myControl != null) { // do stuff with myControl.PulblicPropertyIWantAccessTo; } } </code></pre> <p>Mainly because using the is keyword causes two (quasi-expensive) casts:</p> <pre><code>if( uc is ParticularUCType ) // one cast to test if it is the type { ParticularUCType myControl = (ParticularUCType)uc; // second cast ParticularUCType myControl = uc as ParticularUCType; // same deal this way // do stuff with myControl.PulblicPropertyIWantAccessTo; } </code></pre> <h2>References</h2> <ul> <li><a href="http://rusek.org/stefan/default.aspx/2008/10/22/the-3-cast-operators-in-c/73/" rel="nofollow">The 3 Cast Operators in C#</a></li> <li><a href="http://www.codeproject.com/KB/cs/csharpcasts.aspx" rel="nofollow">Type Casting Impact over Execution Performance in C#</a></li> </ul>