Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/src/System/AppContext.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/AppContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/src/System/AppContext.cs b/src/System.Private.CoreLib/src/System/AppContext.cs
index 6b316a448..0858f357a 100644
--- a/src/System.Private.CoreLib/src/System/AppContext.cs
+++ b/src/System.Private.CoreLib/src/System/AppContext.cs
@@ -25,7 +25,7 @@ namespace System
UnknownValue = 0x8 // Has no default and could not find an override
}
private static readonly Dictionary<string, SwitchValueState> s_switchMap = new Dictionary<string, SwitchValueState>();
- private static Dictionary<String, Object> s_localStore = new Dictionary<String, Object>();
+ private static Dictionary<string, object> s_localStore = new Dictionary<string, object>();
private static string s_defaultBaseDirectory;
// AppDomain lives in CoreFX, but some of this class's events need to pass in AppDomains, so people registering those
// events need to first pass in an AppDomain that we stash here to pass back in the events.