AgGateway.ADAPT.ISOv4Plugin.ImportMappers.LogMappers.CondensedStateMeterCreator.GetSectionValue C# (CSharp) Метод

GetSectionValue() приватный Метод

private GetSectionValue ( uint value, int section ) : uint
value uint
section int
Результат uint
        private uint GetSectionValue(uint value, int section)
        {
            int zeroBasedSection = (section % 16) - 1;
            var sectionValue = value >> (zeroBasedSection * 2) & 0x03;
            return sectionValue;
        }