mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-23 01:58:00 +02:00
Moving corlib files out of "System" directory into root
This commit is contained in:
parent
4cd58262e4
commit
7dbfd15292
179 changed files with 3 additions and 0 deletions
38
BeefLibs/corlib/src/Globalization/DateTimeStyles.bf
Normal file
38
BeefLibs/corlib/src/Globalization/DateTimeStyles.bf
Normal file
|
@ -0,0 +1,38 @@
|
|||
// This file contains portions of code released by Microsoft under the MIT license as part
|
||||
// of an open-sourcing initiative in 2014 of the C# core libraries.
|
||||
// The original source was submitted to https://github.com/Microsoft/referencesource
|
||||
|
||||
namespace System.Globalization
|
||||
{
|
||||
public enum DateTimeStyles
|
||||
{
|
||||
// Bit flag indicating that leading whitespace is allowed. Character values
|
||||
// 0x0009, 0x000A, 0x000B, 0x000C, 0x000D, and 0x0020 are considered to be
|
||||
// whitespace.
|
||||
|
||||
|
||||
None = 0x00000000,
|
||||
|
||||
AllowLeadingWhite = 0x00000001,
|
||||
|
||||
AllowTrailingWhite = 0x00000002, //Bitflag indicating trailing whitespace is allowed.
|
||||
|
||||
AllowInnerWhite = 0x00000004,
|
||||
|
||||
AllowWhiteSpaces = AllowLeadingWhite | AllowInnerWhite | AllowTrailingWhite,
|
||||
// When parsing a date/time string, if all year/month/day are missing, set the default date
|
||||
// to 0001/1/1, instead of the current year/month/day.
|
||||
|
||||
NoCurrentDateDefault = 0x00000008,
|
||||
// When parsing a date/time string, if a timezone specifier ("GMT","Z","+xxxx", "-xxxx" exists), we will
|
||||
// ajdust the parsed time based to GMT.
|
||||
|
||||
AdjustToUniversal = 0x00000010,
|
||||
|
||||
AssumeLocal = 0x00000020,
|
||||
|
||||
AssumeUniversal = 0x00000040,
|
||||
// Attempt to preserve whether the input is unspecified, local or UTC
|
||||
RoundtripKind = 0x00000080,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue