S
Sangeetha
I came across this array initialisation which I can't follow
----------------------------------------------
public static string[] AllOperators
{
get
{
return m_AllOps;
}
}
m_allOps is a private member variable of the class and is declared as
static string[] m_AllOps = { "+", "-", "*", "/" };
-------------------------------------------
Can anyone help me understand it!!
Thanks
Sangeetha
----------------------------------------------
public static string[] AllOperators
{
get
{
return m_AllOps;
}
}
m_allOps is a private member variable of the class and is declared as
static string[] m_AllOps = { "+", "-", "*", "/" };
-------------------------------------------
Can anyone help me understand it!!
Thanks
Sangeetha