using System; using System.Runtime.InteropServices; namespace System { /// Specifies how mathematical rounding methods should process a number that is midway between two numbers. /// 1 // Token: 0x02000685 RID: 1669 [ComVisible(true)] public enum MidpointRounding { /// When a number is halfway between two others, it is rounded toward the nearest even number. // Token: 0x0400192F RID: 6447 ToEven, /// When a number is halfway between two others, it is rounded toward the nearest number that is away from zero. // Token: 0x04001930 RID: 6448 AwayFromZero } }