Windows.Win32.System.Com.CY
The CY structure is useful for calculations involving money, or for any fixed-point calculation where accuracy is particularly important.
namespace Windows.Win32.System.Com
{
internal struct CY : IEquatable<CY>
{
public bool Equals(CY other);
public static bool operator ==(CY left, CY right);
public static bool operator !=(CY left, CY right);
public static explicit operator decimal(CY value);
public static explicit operator CY(decimal value);
public static explicit operator float(CY value);
public static explicit operator CY(float value);
}
}