System.MutableDecimal
struct MutableDecimal
namespace System
{
internal struct MutableDecimal
{
public uint Flags;
public uint High;
public uint Low;
public uint Mid;
public bool IsNegative { get; set; }
public int Scale { get; set; }
}
}