While I am trying to resize the array in C # as shown below,
Array.Resize(ref Globals.NameList, 0);
I get the following error
A property or indexer may not be passed as an out or ref parameter
Globals are an object. NameList is an array of string types declared in the Globals class.
Please help me fix this by posting the correct code.
Thank!
source
share