Casting a UserControl as a specific type of user control - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T17:21:39Zhttp://stackoverflow.com/feeds/question/227121http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227121/casting-a-usercontrol-as-a-specific-type-of-user-control3Casting a UserControl as a specific type of user controlrockstardev2008-10-22T18:58:51Z2008-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#2271273Answer by Kon M for Casting a UserControl as a specific type of user controlKon M2008-10-22T19:00:35Z2008-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#2271336Answer by Chris Pietschmann for Casting a UserControl as a specific type of user controlChris Pietschmann2008-10-22T19:01:39Z2008-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#2271391Answer by SoloBold for Casting a UserControl as a specific type of user controlSoloBold2008-10-22T19:04:08Z2008-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>