Raspberry.IO.InterIntegratedCircuit.I2cDriver.WriteUInt32 C# (CSharp) Method

WriteUInt32() private static method

private static WriteUInt32 ( IntPtr address, uint value ) : void
address System.IntPtr
value uint
return void
        private static void WriteUInt32(IntPtr address, uint value)
        {
            unchecked
            {
                Marshal.WriteInt32(address, (int)value);
            }
        }