Click or drag to resize
ResourceManager Class
Represents a resource manager that provides convenient access to culture-specific resources at run time.
Inheritance Hierarchy
SystemObject
  System.ResourcesResourceManager

Namespace: System.Resources
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
[SerializableAttribute]
public class ResourceManager

The ResourceManager type exposes the following members.

Methods
  NameDescription
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetObject(String)
Returns the value of the specified non-string resource.
Public methodGetObject(String, CultureInfo)
Gets the value of the specified non-string resource localized for the specified culture.
Public methodGetResourceSet
Gets the ResourceSet for a particular culture.
Public methodGetStream(String)
Returns an unmanaged memory stream object from the specified resource.
Public methodGetStream(String, CultureInfo)
Returns an unmanaged memory stream object from the specified resource, using the specified culture.
Public methodGetString(String)
Returns the value of the specified string resource.
Public methodGetString(String, CultureInfo)
Returns the value of the string resource localized for the specified culture.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Protected fieldBaseNameField
Indicates the root name of the resource files that the ResourceManager searches for resources.
Public fieldStatic memberHeaderVersionNumber
A constant readonly value indicating the version of resource file headers that the current implementation of ResourceManager can interpret and produce.
Public fieldStatic memberMagicNumber
Holds the number used to identify resource files.
Protected fieldMainAssembly
Indicates the main Assembly that contains the resources.
Protected fieldResourceSets
Contains a Hashtable that returns a mapping from cultures to ResourceSet objects.
Top
See Also