I'm trying to store an array of ints
to use periostealmente, but I came across a syntax error in the part. { 4, 7, 8, 9, 10 }
private Int32[] m_FluxosPlataformas = null;
public Int32[] FluxosPlataformas
{
get
{
if (m_FluxosPlataformas == null)
{
m_FluxosPlataformas = { 4, 7, 8, 9, 10 } ;
}
return m_FluxosPlataformas;
}
}