8 lines
156 B
C#
Raw Normal View History

namespace System
{
[Flags]
internal enum TimeZoneInfoOptions {
None = 1,
NoThrowOnInvalidTime = 2
};
}