Get String Resource : Resource ResX « Development Class « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Development Class » Resource ResXScreenshots 
Get String Resource
    
//------------------------------------------------------------------------------
// Copyright (c) 2003-2009 Whidsoft Corporation. All Rights Reserved.
//------------------------------------------------------------------------------

namespace Whidsoft.WebControls
{
    using System;
    using System.Drawing;
    using System.IO;
    using System.Collections;
    using System.Web.UI;
    using System.Web.UI.HtmlControls;
    using System.Web.UI.WebControls;
    using System.Text.RegularExpressions;

    /// <summary>
    ///  Utility class with various useful static functions.
    /// </summary>
    internal class Util
    {
        private static System.Resources.ResourceManager _ResourceManager = null;

        internal static System.Resources.ResourceManager GetResourceManager()
        {
            if (_ResourceManager == null)
            {
                Type ourType = typeof(Util);
                _ResourceManager = new System.Resources.ResourceManager(ourType.Namespace, ourType.Module.Assembly);
            }

            return _ResourceManager;
        }

        internal static string GetStringResource(string name)
        {
            try
            {
                System.Resources.ResourceManager _ResourceManager = GetResourceManager();
                if (_ResourceManager != null)
                {
                    object o = _ResourceManager.GetObject(name);
                    return o != null ? o.ToString() : name;
                }
                else
                {
                    return name;
                }
            }
            catch
            {
                return name;
            }
        }
    }
}

   
    
    
    
  
Related examples in the same category
1.Create resource file and read value from it using IDictionaryEnumeratorCreate resource file and read value from it using IDictionaryEnumerator
2.Create resource file and read value from itCreate resource file and read value from it
3.Create File Based Resource Manager
4.ResX Resource WriterResX Resource Writer
5.Save Image file to resource fileSave Image file to resource file
6.Compile resource into the final exe fileCompile resource into the final exe file
7.Generate resource file with image
8.Save and load image from resource file
9.Save and read value from resx resource file
10.Writing a resource file programmatically
11.Reading resourcesReading resources
12.Resource file generator application for difference languages
13.Read Resource for difference langaugesRead Resource for difference langauges
14.Creating a new resource readerCreating a new resource reader
15.Load Rescouce BMP image Load Rescouce BMP image
16.Get Embedded Resource String
17.Get Resource As Bytes
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.