sealed
class uint
An integer between 0 and 18446744073709551615.
public
uint
.Constructor(
value
)
const
uint
uint
.MinValue
The minimum uint value
const
uint
uint
.MaxValue
The maximum uint value
public
static
uint
uint
.Convert(
value
)
Convert value into type uint, null if not successful
public
virtual
object
.GetLayoutTip
Return a layout for the hint popup
public
virtual
object
.GetLayoutSpan
Return a layout inside a span
public
virtual
object
.GetLayoutBlock
Return a layout inside a block
public
virtual
object
.GetSourceReference
Return a source reference for this object
public
virtual
void
object
.GetTexSource(
source
)
LaTeX source code for this object
public
virtual
Icon
object
.GetIcon
Return a icon for this object
public
virtual
int
object
.Compare(
value
)
Compares this object with another and returns (-1, 0, or 1)
Example
=
ListBlock
{
Paragraph
{
"unsigned integer literal "
; 0b011100111U};
Paragraph
{
"unsigned integer literal "
; 5U};
Paragraph
{
"Min value "
;
uint
.
MinValue
};
Paragraph
{
"Max value "
;
uint
.
MaxValue
};
};
•
unsigned integer literal 231
•
unsigned integer literal 5
•
Min value 0
•
Max value 18446744073709551615