Hi!
I have a separate project with resources.
To avoid long strings in code I use aliases.
Instead of
var message = MyDictionary.Resources.MessageGetAvailavleAmount;
I use:
using Res = MyDictionary.Resources;
...
var message = Res.MessageGetAvailavleAmount;
But in this case "Detect code references" feature doesn't detect using of this resource.
Thank you
I have a separate project with resources.
To avoid long strings in code I use aliases.
Instead of
var message = MyDictionary.Resources.MessageGetAvailavleAmount;
I use:
using Res = MyDictionary.Resources;
...
var message = Res.MessageGetAvailavleAmount;
But in this case "Detect code references" feature doesn't detect using of this resource.
Thank you