Gurux.DLMS.GXByteBuffer.GetInt32 C# (CSharp) Метод

GetInt32() публичный Метод

Get UInt32 value from byte array from the current position and then increments the position.
public GetInt32 ( ) : Int32
Результат System.Int32
        public Int32 GetInt32()
        {
            Int32 value = (Int32)GetUInt32(Position);
            Position += 4;
            return value;
        }

Usage Example

Пример #1
0
        int IConvertible.ToInt32(IFormatProvider provider)
        {
            GXByteBuffer bb = GetByteBuffer(Value, 4);

            return(bb.GetInt32());
        }