2 writes to internalCharBuffer
System.Messaging (2)
System\Messaging\ActiveXMessageFormatter.cs (2)
128this.internalCharBuffer = new char[size]; 141this.internalCharBuffer = new char[size];
8 references to internalCharBuffer
System.Messaging (8)
System\Messaging\ActiveXMessageFormatter.cs (8)
127if (this.internalCharBuffer == null || this.internalCharBuffer.Length < size) 133this.asciiEncoding.GetChars(bytes, 0, size, this.internalCharBuffer, 0); 134return new String(this.internalCharBuffer, 0, size); 140if (this.internalCharBuffer == null || this.internalCharBuffer.Length < size) 146this.unicodeEncoding.GetChars(bytes, 0, size * 2, this.internalCharBuffer, 0); 147return new String(this.internalCharBuffer, 0, size);