23 lines
747 B
C#
23 lines
747 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies how mathematical rounding methods should process a number that is midway between two numbers.</summary>
|
|
// Token: 0x0200011F RID: 287
|
|
[Token(Token = "0x200011F")]
|
|
[ComVisible(true)]
|
|
public enum MidpointRounding
|
|
{
|
|
/// <summary>When a number is halfway between two others, it is rounded toward the nearest even number.</summary>
|
|
// Token: 0x04000468 RID: 1128
|
|
[Token(Token = "0x4000468")]
|
|
ToEven,
|
|
/// <summary>When a number is halfway between two others, it is rounded toward the nearest number that is away from zero.</summary>
|
|
// Token: 0x04000469 RID: 1129
|
|
[Token(Token = "0x4000469")]
|
|
AwayFromZero
|
|
}
|
|
}
|