⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xbuffer.cs

📁 语音视频功能 里面实现了基本的QQ与语音对话
💻 CS
字号:
using System;
using System.IO;

namespace Org.Mentalis.Security.Ssl.Shared {
	/// <summary>
	/// Creates a stream whose backing store is memory.
	/// </summary>
	/// <remarks>This class is created by Kevin Knoop.</remarks>
	internal class XBuffer : MemoryStream {
		/// <summary>
		/// Initializes a new instance of the XBuffer class with an expandable capacity initialized to zero.
		/// </summary>
		public XBuffer() : base() {
			//
		}
		/// <summary>
		/// Removes a number of leading bytes from the buffer.
		/// </summary>
		/// <param name="aByteCount">The number of bytes to remove.</param>
		/// <exception cref="ArgumentException"><paramref name="aByteCount"/> is invalid.</exception>
		public void RemoveXBytes(int aByteCount) {
			if (aByteCount > Length) {
				throw new ArgumentException("Not enough data in buffer");
			}
			if (aByteCount == Length) {
				SetLength(0);
			} else {
				byte[] buff = GetBuffer();
				Array.Copy(buff, aByteCount, buff, 0, (int)Length-aByteCount);
				SetLength(Length-aByteCount);
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -