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

Method WriteWString

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

Source from the content-addressed store, hash-verified

123 }
124
125 public void WriteWString(string value)
126 {
127 ThrowIfDisposed();
128
129 foreach (char c in value)
130 {
131 WriteByte((byte)c);
132 WriteByte();
133 }
134 }
135
136 public void WriteCharString(string value)
137 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected