natix.CompactDS.BitStream32.Set32 C# (CSharp) Method

Set32() public method

Set the complete uint (val) at the specified position (i), please notice that bitcounter is not modified
public Set32 ( int i, UInt32 val ) : void
i int
val System.UInt32
return void
        public void Set32(int i, UInt32 val)
        {
            this.Buffer[i] = val;
        }