EditorFor an int chooses a string template
asp.net-mvc, asp.net-mvc-3
Solution
EditorTemplates use CLR typenames, not C# keywords. You need to create `Int32.cshtml`.
Problem
i have two EditorTemplates ``` string.cshtml int.cshtml ``` when i write `EditorFor` a `string` or an `int` they both choose `string.cshtml` and when i even remove `string.cshtml` , the `EditorFor` for an `int` dont choose `int.cshtml`