System.SysUtils.TNativeUIntHelper.Parse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function Parse(const S: string): NativeUInt; static;

Properties

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

Description

Converts a string to a NativeUInt value.

Parse converts the string specified by S to NativeUInt.

The Parse method of TNativeUIntHelper raises the EConvertError, if the string S is not a valid number, or out of range of the NativeUInt type.

Note: For details on how the conversion is done, see the description of StrToUInt or StrToUInt64.

See Also