show/hide this revision's text 3 added 335 characters in body

Casting

I prefer to use:

foreach(UserControl uc in plhMediaBuys.Controls)
{
    ParticularUCType myControl = uc as ParticularUCType;
    if (myControl != null)
    {
        // do stuff with myControl.PulblicPropertyIWantAccessTo;
    }
}

Mainly because using the is keyword causes two (quasi-expensive) casts:

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;
}

References

show/hide this revision's text 2 added 290 characters in body

I prefer to use:

foreach(UserControl uc in plhMediaBuys.Controls)
{
    ParticularUCType myControl = uc as ParticularUCType;
    if (myControl != null)
    {
        // do stuff with myControl..PulblicPropertyIWantAccessTomyControl.PulblicPropertyIWantAccessTo;
    }
}

Mainly because using the is keyword causes two casts:

if( uc is ParticularUCType ) // one cast to test if it is the type
{
    ParticularUCType myControl = (ParticularUCType)uc; // second cast
    // do stuff with myControl.PulblicPropertyIWantAccessTo;
}
show/hide this revision's text 1

I prefer to use:

foreach(UserControl uc in plhMediaBuys.Controls)
{
    ParticularUCType myControl = uc as ParticularUCType;
    if (myControl != null)
    {
        // do stuff with myControl..PulblicPropertyIWantAccessTo;
    }
}