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