Bump corefx
[mono.git] / mcs / class / referencesource / mscorlib / system / midpointrounding.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6
7 namespace System {
8
9 [System.Runtime.InteropServices.ComVisible(true)]
10     public enum MidpointRounding {
11         ToEven = 0,
12         AwayFromZero = 1,
13     }
14 }