9 lines
337 B
C#
9 lines
337 B
C#
namespace System
|
|
{
|
|
static class LocalAppContextSwitches {
|
|
public static readonly bool IgnoreEmptyKeySequences = false;
|
|
public static readonly bool DontThrowOnInvalidSurrogatePairs = false;
|
|
public static readonly bool IgnoreKindInUtcTimeSerialization = false;
|
|
public static readonly bool EnableTimeSpanSerialization = false;
|
|
}
|
|
} |