m
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user