コード例 #1
0
ファイル: ByteBuffer.cs プロジェクト: geofrey/crayon
		public void Concat(ByteBuffer other)
		{
			this.byteCode.AddRange(other.byteCode);
			this.tokens.AddRange(other.tokens);
			this.stringArgs.AddRange(other.stringArgs);
		}