CSharpUtils.ColorFormat.Component.Insert C# (CSharp) Method

Insert() public method

public Insert ( uint &Base, uint Value ) : void
Base uint
Value uint
return void
			public void Insert(ref uint Base, uint Value)
			{
				var MaskValue = this.Mask;

				Base =
					(Base & ~(Mask << Offset))
					| ((Value & MaskValue) << Offset)
				;
			}
			public void InsertFromByte(ref uint Base, byte Value)