(int index, out object obj)
| 88 | } |
| 89 | |
| 90 | public bool TryGetValue(int index, out object obj) |
| 91 | { |
| 92 | if (index >= 0 && index < count && list[index].next == ALLOCED) |
| 93 | { |
| 94 | obj = list[index].obj; |
| 95 | return true; |
| 96 | } |
| 97 | |
| 98 | obj = null; |
| 99 | return false; |
| 100 | } |
| 101 | |
| 102 | public object Get(int index) |
| 103 | { |
no outgoing calls
no test coverage detected