Adf.Base.Resources.ResourcesFileResourceProvider.GetString C# (CSharp) 메소드

GetString() 공개 메소드

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.
리턴 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