Added GetCount Method to Queue

This commit is contained in:
Luke Else 2022-04-17 23:17:57 +01:00
parent 564e4d161f
commit 1c5a9c83ce

View File

@ -66,5 +66,10 @@
} }
return default; return default;
} }
public int GetCount()
{//Return the number of items in the list
return Count;
}
} }
} }