Women in Technology

Hear us Roar



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.


Full Threads Oldest First

Showing messages 1 through 2 of 2.

  • Example Code Problem
    2003-04-01 22:59:37  anonymous2 [View]

    Yes. U'r correct the if condition s'd be changed in the GetString Method ....

    Thanks for the Great article......
  • Example Code Problem
    2003-04-01 22:58:38  anonymous2 [View]

    Yes. U'r correct the if condition s'd be changed in the GetString Method ....

    Thanks for the Great article......

    Srini