mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-15 23:04:09 +02:00
14 lines
204 B
Beef
14 lines
204 B
Beef
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
|
|
namespace System
|
|
{
|
|
public enum MidpointRounding
|
|
{
|
|
ToEven = 0,
|
|
AwayFromZero = 1,
|
|
}
|
|
}
|