Hi.
I works with "dynamic" C# stuff now and I found that "Refactor->Find References" don't search in "dynamic" statements.
If I have constant like
const string SomeConstant = "SomeConstant";
and use it in dynamic statement like:
dynamic value = new Dictionary<string,dynamic>();
value[SomeConstant] = "some";
and when I use "Refactor->Find References" on declaration of SomeConstant, command's results list don't contains usage of SomeConstant on line value[SomeConstant] = "some";
I suppose that Visual Assist do not parse dynamic stuff.
Cheers.