[corlib] ParseNumber.StringToInt now check for overflows.
[mono.git] / mcs / class / corlib / ReferenceSources / TimeZoneInfoOptions.cs
1 namespace System
2 {
3     [Flags]
4     internal enum TimeZoneInfoOptions {
5         None                      = 1,
6         NoThrowOnInvalidTime      = 2
7     };
8 }