MonobjcMonobjc Documented Class Library
NSDecimalNumber Constructor (mantissa, exponent, flag)
NamespacesMonobjc.FoundationNSDecimalNumberNSDecimalNumber(UInt64, Int16, Boolean)

Returns an NSDecimalNumber object initialized using the given mantissa, exponent, and sign.

Original signature is '- (id)initWithMantissa:(unsigned long long)mantissa exponent:(short)exponent isNegative:(BOOL)flag'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public NSDecimalNumber(
	ulong mantissa,
	short exponent,
	bool flag
)
Public Sub New ( _
	mantissa As ULong, _
	exponent As Short, _
	flag As Boolean _
)
public:
NSDecimalNumber(
	unsigned long long mantissa, 
	short exponent, 
	bool flag
)
Parameters
mantissa (UInt64)
The mantissa for the new decimal number object.
exponent (Int16)
The exponent for the new decimal number object.
flag (Boolean)
A Boolean value that specifies whether the sign of the number is negative.
Return Value
An NSDecimalNumber object initialized using the given mantissa, exponent, and sign.
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)