You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some quantities, for instance information have decimal as base type (which does make sense). However, except for the Value property, all properties return double:
/// <summary>/// Gets a <see cref="double"/> value of this quantity converted into <see cref="InformationUnit.Bit"/>/// </summary>publicdoubleBits=> As(InformationUnit.Bit);/// <summary>/// Gets a <see cref="double"/> value of this quantity converted into <see cref="InformationUnit.Byte"/>/// </summary>publicdoubleBytes=> As(InformationUnit.Byte);
This is a bit confusing and unnecessarily looses precision. Would it be possible to change these properties to decimal, too?