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

SetUInt64() public method

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

Same methods

GXByteBuffer::SetUInt64 ( int index, System.UInt64 item ) : void