Org.Mozilla.Classfile.ConstantPool.Write C# (CSharp) Method

Write() private method

private Write ( byte data, int offset ) : int
data byte
offset int
return int
		internal int Write(byte[] data, int offset)
		{
			offset = ClassFileWriter.PutInt16((short)itsTopIndex, data, offset);
			System.Array.Copy(itsPool, 0, data, offset, itsTop);
			offset += itsTop;
			return offset;
		}