I've added a small function in the Resources.Designer.cs and it working great, the problem is that when I add or remove something from the Resources.resx this function always get removed, is there any indicator I could put or anyway to bypass this?
Thank you!
It is a really simple method used as an indexer.
internal static string Keys(string key)
{
return ResourceManager.GetString(key, resourceCulture);
}
I've done that because you can't do Properties.Resources and then concat a value. An extension could work, however I tried and it gets fancy because it's all static method and you dont want to instantiate.
Ideas?