Adf.Base.Resources.ResourcesFileResourceProvider.GetString C# (CSharp) Method

GetString() public method

Returns the value from the resource file corresponding to the specified key.
public GetString ( string key ) : string
key string The key for which the corresponding value is required.
return string
        public string GetString(string key)
        {
            System.Resources.ResourceManager resource = Resource;

            string value = resource.GetString(key);

            resource.ReleaseAllResources();

            return value;
        }

Same methods

ResourcesFileResourceProvider::GetString ( string key, CultureInfo culture ) : string
ResourcesFileResourceProvider