Gurux.DLMS.GXByteBuffer.SetInt16 C# (CSharp) Méthode

SetInt16() public méthode

Push the given Int16 into this buffer at the current position, and then increments the position.
public SetInt16 ( Int16 value ) : void
value System.Int16 The value to be added.
Résultat void
        public void SetInt16(Int16 value)
        {
            SetInt16(Size, value);
            Size += 2;
        }

Same methods

GXByteBuffer::SetInt16 ( int index, Int16 value ) : void