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

SetInt64() public method

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

Same methods

GXByteBuffer::SetInt64 ( int index, System.Int64 item ) : void