Procházet zdrojové kódy

* Encoding.cs: Use name const to load I18N assembly.

svn path=/trunk/mcs/; revision=26642
Lluis Sanchez před 21 roky
rodič
revize
f1e94cf35b

+ 4 - 0
mcs/class/corlib/System.Text/ChangeLog

@@ -1,3 +1,7 @@
+2004-05-03 Lluis Sanches Gual  <[email protected]>
+
+	* Encoding.cs: Use name const to load I18N assembly.
+
 2004-04-25  Andreas Nahr <[email protected]>
 
 	* Encoding.cs: Call shortcut String.ToLowerInvariant

+ 1 - 1
mcs/class/corlib/System.Text/Encoding.cs

@@ -237,7 +237,7 @@ public abstract class Encoding
 			if (i18nAssembly == null) {
 				try {
 					try {
-						i18nAssembly = Assembly.Load ("I18N");
+						i18nAssembly = Assembly.Load (Consts.AssemblyI18N);
 					} catch (NotImplementedException) {
 						// Assembly loading unsupported by the engine.
 						i18nDisabled = true;