return arr.Length == 0 ? null : arr[item].ToString();
Can anyone tell me what this syntax means?
Does it basically mean if arr.Length is equal to 0 then return null, else
return the item in the array ??
Can anyone tell me what this syntax means?
Does it basically mean if arr.Length is equal to 0 then return null, else
return the item in the array ??
Comment