MonobjcMonobjc Documented Class Library
ScanInt Method (intValue)
NamespacesMonobjc.FoundationNSScannerScanInt(Int32%)

Scans for an int value from a decimal representation, returning a found value by reference.

Original signature is '- (BOOL)scanInt:(int *)intValue'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool ScanInt(
	out int intValue
)
Public Overridable Function ScanInt ( _
	<OutAttribute> ByRef intValue As Integer _
) As Boolean
public:
virtual bool ScanInt(
	[OutAttribute] int% intValue
)
Parameters
intValue (Int32%)
Upon return, contains the scanned value. Contains INT_MAX or INT_MIN on overflow.
Return Value
YES if the receiver finds a valid decimal integer representation, otherwise NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)