1
I am trying to store an array of ints
to use periosteally, but came across a syntax error on 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;
}
}
You tried to replace the line: m_FluxosPlataformas = { 4; 7, 8, 9, 10 } ; By: m_FluxosPlataformas = { 4, 7, 8, 9, 10 } ; ???
– Renan
Yes, but still of error
– Marco Souza