MCPcopy Create free account
hub / github.com/AlSch092/UltimateAntiCheat / WriteCharString

Method WriteCharString

Server/Network/PacketWriter.cs:136–146  ·  view source on GitHub ↗
(string value)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected