Gurux.DLMS.GXByteBuffer.SetInt32 C# (CSharp) Method

SetInt32() public method

Push the given UInt32 into this buffer at the current position, and then increments the position.
public SetInt32 ( Int32 value ) : void
value System.Int32 The value to be added.
return void
        public void SetInt32(Int32 value)
        {
            SetInt32(Size, value);
            Size += 4;
        }

Same methods

GXByteBuffer::SetInt32 ( int index, Int32 item ) : void