(int count)
| 151 | } |
| 152 | |
| 153 | public void WriteZero(int count) |
| 154 | { |
| 155 | if (count <= 0) |
| 156 | throw new PacketException("Count out of range"); |
| 157 | |
| 158 | for (int i = 0; i < count; i++) |
| 159 | WriteByte(); |
| 160 | } |
| 161 | |
| 162 | public byte[] ToArray() |
| 163 | { |
nothing calls this directly
no outgoing calls
no test coverage detected