Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7220e5c229 |
@@ -38,7 +38,11 @@ namespace Catamaran.CollectionGenericObjects
|
||||
|
||||
public T? Get(int position)
|
||||
{
|
||||
return _collection[position];
|
||||
if (position >= 0 && position < Count)
|
||||
{
|
||||
return _collection[position];
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public int Insert(T obj)
|
||||
|
||||
Reference in New Issue
Block a user