Esempio n. 1
0
 /// <summary>
 /// Combine this <see cref="Nibble">nibble</see> <see cref="System.Byte">value</see> as the high-order nibble
 /// with the provided low-order <see cref="Nibble">nibble</see> <see cref="System.Byte">value</see>.
 /// </summary>
 /// <param name="nibble"></param>
 /// <returns></returns>
 public byte Append(Nibble nibble)
 {
     return(bval.AddComp3(nibble.Value));
 }