(byte[] counter)
| 160 | } |
| 161 | |
| 162 | private static void IncrementCounter(byte[] counter) |
| 163 | { |
| 164 | for (int i = counter.Length - 1; i >= 0; i--) |
| 165 | { |
| 166 | if (++counter[i] != 0) |
| 167 | break; |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 |
nothing calls this directly
no outgoing calls
no test coverage detected