Org.Mozilla.Classfile.ConstantPool.Write C# (CSharp) Метод

Write() приватный Метод

private Write ( byte data, int offset ) : int
data byte
offset int
Результат 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;
		}