(string value)
| 134 | } |
| 135 | |
| 136 | public void WriteCharString(string value) |
| 137 | { |
| 138 | ThrowIfDisposed(); |
| 139 | |
| 140 | foreach (char c in value) |
| 141 | { |
| 142 | WriteByte((byte)c); |
| 143 | } |
| 144 | |
| 145 | WriteByte((byte)0x00); |
| 146 | } |
| 147 | |
| 148 | public void WriteHexString(string value) |
| 149 | { |
nothing calls this directly
no outgoing calls
no test coverage detected