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