Article:
 |
|
.NET Localization, Part 3: Localizing Text
|
| Subject: |
|
Example Code Problem |
| Date: |
|
2002-10-29 06:27:20 |
| From: |
|
anonymous2
|
|
|
|
I don't believe this is what you intended in your sample code:
// See if the reource manager already exists
ResourceManager rm = (ResourceManager resourceManagers[modname];
if (rm != null)
{
// ResourceManager not found,
....
probablly should be:
if (rm == null)
Thanks for the article.
|
Showing messages 1 through 2 of 2.
-
Example Code Problem
2003-04-01 22:59:37
anonymous2
[View]
-
Example Code Problem
2003-04-01 22:58:38
anonymous2
[View]
Thanks for the Great article......