valueOf Summary Returns the primitive byte value wrapped by the System.UInteger8 object. Usage public byte valueOf() Returns The primitive byte value wrapped by the System.UInteger8 object. Description Returns the primitive byte value wrapped by the System.UInteger8 object. Examples Basic Usage 123456import System; System.UInteger8 a = new System.UInteger8(1);System.UInteger8 b = new System.UInteger8(2);Console.log(a.valueOf()); // 1Console.log(b.valueOf()); // 2 Share HTML | BBCode | Direct Link