Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ WriteNameTable()

static void System.Reflection.PortableExecutable.ManagedTextSection.WriteNameTable ( BlobBuilder builder)
inlinestaticprivate

Definition at line 259 of file ManagedTextSection.cs.

260 {
261 int count = builder.Count;
262 string text = "mscoree.dll";
263 foreach (char c in text)
264 {
265 builder.WriteByte((byte)c);
266 }
267 builder.WriteByte(0);
268 builder.WriteUInt16(0);
269 }

References System.count, System.Reflection.Metadata.BlobBuilder.Count, and System.text.

Referenced by System.Reflection.PortableExecutable.ManagedTextSection.Serialize().