public int GetNumber()
{
if (GetItem() != null)
{
return 1;
}
else
{
return 0;
}
}
Seems like a return of true or false to me…
Was this intended?
I went to all 4 references for this and they look like they want a number different than 1.
Just hoping to understand the strategy… (maybe a typo and meant to return GetItem())??
Thanks for any help to understand