20

私のRESXファイルは次のようになります。

Name            Value        Comments
Rule_seconds    seconds      seconds
Rule_Sound      Sound        Sound

私が欲しいのは:文字列値による名前、以下のようなもの:

public string GetResxNameByValue(string value)
{
// some code to get name value
}

そして、以下のように実装します。

string str = GetResxNameByValue("seconds");

str戻るようにRule_seconds

ありがとう!

4

7 に答える 7

28

これはうまくいくかもしれません

private string GetResxNameByValue(string value)
    {
            System.Resources.ResourceManager rm = new System.Resources.ResourceManager("YourNamespace.YourResxFileName", this.GetType().Assembly);


        var entry=
            rm.GetResourceSet(System.Threading.Thread.CurrentThread.CurrentCulture, true, true)
              .OfType<DictionaryEntry>()
              .FirstOrDefault(e => e.Value.ToString() ==value);

        var key = entry.Key.ToString();
        return key;

    }

いくつかの追加のエラーチェックを使用して..

于 2013-05-03T15:01:11.910 に答える
5

キーを渡すことで直接アクセスできます:

    public  string gtresource(string rulename)
    {
        string value = null;
        System.Resources.ResourceManager RM = new System.Resources.ResourceManager("CodedUITestProject1.Resource1", this.GetType().Assembly);
        value = RM.GetString(rulename).ToString();

        if(value !=null && value !="")
        {
            return value;

        }
        else
        {
            return "";
        }

    }
于 2013-11-06T18:38:53.887 に答える
2

念のため、誰にとっても役立つかもしれません。この ResourceHelper は、 jureMohan Singh Sainiに触発されました。

using System.Collections;
using System.Linq;
using System.Reflection;
using System.Resources;
using System.Threading;

public class ResourceHelper
{
    /// <summary>
    ///     ResourceHelper
    /// </summary>
    /// <param name="resourceName">i.e. "Namespace.ResourceFileName"</param>
    /// <param name="assembly">i.e. GetType().Assembly if working on the local assembly</param>
    public ResourceHelper(string resourceName, Assembly assembly)
    {
        ResourceManager = new ResourceManager(resourceName, assembly);
    }

    private ResourceManager ResourceManager { get; set; }

    public string GetResourceName(string value)
    {
        DictionaryEntry entry = ResourceManager.GetResourceSet(Thread.CurrentThread.CurrentCulture, true, true).OfType<DictionaryEntry>().FirstOrDefault(dictionaryEntry => dictionaryEntry.Value.ToString() == value);
        return entry.Key.ToString();
    }

    public string GetResourceValue(string name)
    {
        string value = ResourceManager.GetString(name);
        return !string.IsNullOrEmpty(value) ? value : null;
    }
}
于 2014-04-03T21:00:43.943 に答える
1
public static class ResourceManagerHelper
{
    public static string GetResourceName(this ResourceManager resourceManager, string value, CultureInfo cultureInfo, bool ignoreCase = false)
    {
        var comparisonType = ignoreCase ? System.StringComparison.OrdinalIgnoreCase : System.StringComparison.Ordinal;
        var entry = resourceManager.GetResourceSet(cultureInfo, true, true)
                                   .OfType<DictionaryEntry>()
                                   .FirstOrDefault(dictionaryEntry => dictionaryEntry.Value.ToString().Equals(value, comparisonType));

        if (entry.Key == null)
            throw new System.Exception("Key and value not found in the resource file");

        return entry.Key.ToString();
    }
}

この拡張メソッドを呼び出すには、

var key = Resources.ResourceManager.GetResourceName(value, CultureInfo.InvariantCulture, true);

この場合、リソース アセンブリを渡したくありませんが、特定のリソースの resourceManager を使用して呼び出すことができます。

于 2015-04-09T08:57:36.983 に答える
0

以下は限定された例です:

  • サブフォルダー内のリソース ファイルを使用します
  • デフォルトのものとは異なるカルチャを使用します

.

public static string GetLocalizedNameReversed(string value)
{
    ResourceManager rm = new ResourceManager($"YourNamespace.YourFolder.YourResourceFileName", assembly);

    var entry = rm.GetResourceSet(new CultureInfo("nb-NO"), true, true)
            .OfType<DictionaryEntry>()
            .FirstOrDefault(e => e.Value.ToString().Equals(value, StringComparison.OrdinalIgnoreCase));

    return entry.Key.ToString();
}
于 2018-05-11T12:52:13.643 に答える