System.SysUtils.UIntToStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function UIntToStr(Value: Cardinal): string;
function UIntToStr(Value: UInt64): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall UIntToStr(unsigned Value)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

Converts an unsigned integer into a string.

UIntToStr converts an unsigned integer into a string containing the decimal representation of that number.

See Also