What are the syntax rules for creating an anonymous array?
i.e.
int[] function()
{
int element1 = 1;
int element2 = 2;
return //array with element1 and element2
{
And what other uses does it have?
What are the syntax rules for creating an anonymous array?
i.e.
int[] function()
{
int element1 = 1;
int element2 = 2;
return //array with element1 and element2
{
And what other uses does it have?