Hi All,
We have requirement displaying tooltip on resource name in C# visual studio add-in
Example:
Suppose my cs files contains
String str = "Hello";
When I right click on hard coded string hello I am moving this string to resource file and at the same time I am replacing this ("Hello") with some other value like JFrame.Properties.Resources.Key123
Now my string becomes
String str = JFrame.Properties.Resources.Key123; //Key123 means string "Hello" in resource file
Now my mouse hover on JFrame.Properties.Resources.Key123 I should get "Hello" in tooltip. How can I achieve this. Please help me.
Thanks
Srinivas