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
1
2
3
4
5
6
import System;
 
System.UInteger8 a = new System.UInteger8(1);
System.UInteger8 b = new System.UInteger8(2);
Console.log(a.valueOf()); // 1
Console.log(b.valueOf()); // 2

Share

HTML | BBCode | Direct Link