1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00
Beef/IDE/mintest/minlib/src/System/MidpointRounding.bf

15 lines
204 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System
{
public enum MidpointRounding
{
ToEven = 0,
AwayFromZero = 1,
}
}