private boolean VerificaMacChrome()
{
if((plataforma.ToUpper().IndexOf("Mac") > -1) &&
(browser.ToUpper().IndexOf("Chrome) > -1)
return true;
else
return false;
}
void GerarListagem()
{
if((VerificaMacChrome() == true)&&
(foiInicializado() && redimensionado > 0))
{
//faça alguma coisa
}
}