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