Raspberry.IO.InterIntegratedCircuit.I2cDriver.WriteUInt32 C# (CSharp) 메소드

WriteUInt32() 개인적인 정적인 메소드

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