IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Runtime.DoubleConverter Struct Reference

Static Public Member Functions

static long ToLong (double value, ref DoubleConverter converter)
 
static double ToDouble (long value, ref DoubleConverter converter)
 

Public Attributes

double d
 
long l
 

Detailed Description

Definition at line 1595 of file ByteCodeHelper.cs.

Member Function Documentation

◆ ToDouble()

static double IKVM.Runtime.DoubleConverter.ToDouble ( long value,
ref DoubleConverter converter )
static

Definition at line 1610 of file ByteCodeHelper.cs.

1611 {
1612 converter.l = value;
1613 return converter.d;
1614 }

◆ ToLong()

static long IKVM.Runtime.DoubleConverter.ToLong ( double value,
ref DoubleConverter converter )
static

Definition at line 1604 of file ByteCodeHelper.cs.

1605 {
1606 converter.d = value;
1607 return converter.l;
1608 }

Member Data Documentation

◆ d

double IKVM.Runtime.DoubleConverter.d

Definition at line 1599 of file ByteCodeHelper.cs.

◆ l

long IKVM.Runtime.DoubleConverter.l

Definition at line 1602 of file ByteCodeHelper.cs.


The documentation for this struct was generated from the following file: