public static IntPtr BoxR8(RuntimeTypeHandle handle, double value) { var memory = AllocateObject(handle, IntPtr.Size * 2); Intrinsic.Store(memory, 0, handle.Value); Intrinsic.StoreR8(memory, IntPtr.Size * 2, value); return(memory); }
public void StoreR8(int offset, double value) { Intrinsic.StoreR8(this, offset, value); }
public void StoreR8(double value) { Intrinsic.StoreR8(this, value); }