at the moment I have this:
in the ViewModel:
[MyCustom(Foo = 23)]
public int CountryId { get; set; }
in the Editor template:
<%= Html.TextBox("", Model) %>
how can I get the value (Foo=23) from my custom attribute (MyCustom) into the editor template ?