Construct a NumAtom.

 

   

Syntax
 

[C#]
NumAtom()
NumAtom(int num)
NumAtom(long num)
NumAtom(double real)

[Visual Basic]
Sub New()
Sub New(num As Integer)
NumAtom(num As long)
Sub New(real As Double)

 

   

Params
 
Name Description
num The initial integer value that the Atom should adopt.
real The initial floating point value that the Atom should adopt.

 

   

Notes
 

Create a NumAtom.

If a value is not specified the default of zero will be used.

 

   

Example
 

None.