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

InsertFromByte() public method

public InsertFromByte ( uint &Base, byte Value ) : void
Base uint
Value byte
return void
			public void InsertFromByte(ref uint Base, byte Value)
			{
				Insert(ref Base, (uint)(Value * Mask / 255));
			}