NUnit.Framework.Internal.DecimalParts
struct DecimalParts
namespace NUnit.Framework.Internal
{
internal struct DecimalParts
{
public uint Low { get; }
public uint Mid { get; }
public uint High { get; }
public bool IsNegative { get; }
public byte Scale { get; }
public static DecimalParts FromValue(decimal value);
}
}