summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/AppDomainUnloadedException.cs
diff options
context:
space:
mode:
authorAlex Perovich <alperovi@microsoft.com>2017-03-21 14:55:39 -0500
committerGitHub <noreply@github.com>2017-03-21 14:55:39 -0500
commit12ef04c22b07f1e4ec5a63009298e4537a2c8e1a (patch)
treec70018c97d8437060d94803bb76eaf0c8090a695 /src/mscorlib/src/System/AppDomainUnloadedException.cs
parente21d073e5e2b1d258cfef9111656d46884b242e7 (diff)
downloadcoreclr-12ef04c22b07f1e4ec5a63009298e4537a2c8e1a.tar.gz
coreclr-12ef04c22b07f1e4ec5a63009298e4537a2c8e1a.tar.bz2
coreclr-12ef04c22b07f1e4ec5a63009298e4537a2c8e1a.zip
Switch coreclr corelib to use resx (#10268)
* Switch to resx * Use roslyn rewriter to switch from GetResourceString to SR * More GetResourceString changes * Add missing resource * Remove Environment.GetResourceString and replace final usages with SR * Remove comment * Fix spacing * Replace final instances of Environment.GetResourceString * Add another missing resource * Add back Environment.GetResourceStringLocal because the runtime needs it
Diffstat (limited to 'src/mscorlib/src/System/AppDomainUnloadedException.cs')
-rw-r--r--src/mscorlib/src/System/AppDomainUnloadedException.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/AppDomainUnloadedException.cs b/src/mscorlib/src/System/AppDomainUnloadedException.cs
index b8b6150c9f..b11ae3381e 100644
--- a/src/mscorlib/src/System/AppDomainUnloadedException.cs
+++ b/src/mscorlib/src/System/AppDomainUnloadedException.cs
@@ -20,7 +20,7 @@ namespace System
internal class AppDomainUnloadedException : SystemException
{
public AppDomainUnloadedException()
- : base(Environment.GetResourceString("Arg_AppDomainUnloadedException"))
+ : base(SR.Arg_AppDomainUnloadedException)
{
SetErrorCode(__HResults.COR_E_APPDOMAINUNLOADED);
}