Switches to Kestrel (#102)

This commit is contained in:
Kamron Batman 2020-04-12 20:57:48 -07:00 • committed by GitHub
parent 70fddfebde
commit 2c0d97cd36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
141 changed files with 1040 additions and 1679 deletions

View file

@ -35,13 +35,13 @@ namespace Server
private byte[] m_CharacterBuffer;
private Encoding m_Encoding;
private readonly Encoding m_Encoding;
private int m_Index;
private int m_MaxBufferChars;
private char[] m_SingleCharBuffer = new char[1];
private bool PrefixStrings;
private readonly char[] m_SingleCharBuffer = new char[1];
private readonly bool PrefixStrings;
public BufferWriter(bool prefixStr)
{