Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TextWriterExtensions.cs
Go to the documentation of this file.
1namespace System.IO;
2
3internal static class TextWriterExtensions
4{
5 public static void WritePartialString(this TextWriter writer, string value, int offset, int count)
6 {
7 if (offset == 0 && count == value.Length)
8 {
9 writer.Write(value);
10 return;
11 }
13 writer.Write(buffer);
14 }
15}
static void WritePartialString(this TextWriter writer, string value, int offset, int count)