I Want to use resources with various language type for my attribute arguments, such as Description Attribute or Display Attribute. As we know, currently C# raise an error for "An Attribute Argument must be a constant expression.". So, how could we solve this issue and use resource instead of constant expression and for example use English Resource for (English/Left To Right) language and (Persian/Right to Left) Languages?
In fact, I don't want any string in my Source Code, I Just want to define any string in any language in my resources and just use their names in my attribute arguments or any other place in source code.