System.Net.Topology.ByteExtensions.ReverseBits C# (CSharp) Méthode

ReverseBits() public static méthode

public static ReverseBits ( this toReverse ) : byte
toReverse this
Résultat byte
        public static byte ReverseBits(this byte toReverse) => BitReverseTable[toReverse];
    }
ByteExtensions