System.Web.UI.WebControls.Menu.MenuTemplateWriter.EnsureCapacity C# (CSharp) Method

EnsureCapacity() private method

private EnsureCapacity ( ) : void
return void
			void EnsureCapacity ()
			{
				char [] tmpBuffer = new char [_buffer.Length * 2];
				Array.Copy (_buffer, tmpBuffer, _buffer.Length);

				_buffer = tmpBuffer;
			}
		}