Passing out Arrays



Returning Arrays

Public int[] GetNumber() 
{
int[] ArrayInt = new int[3];
ArrayInt[0] = 5;
ArrayInt[1] = 10;
ArrayInt[2] = 15;

return ArrayInt
}



© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext