L'appel est ambigu entre les méthodes suivantes ou des propriétés (bug??)

  1. Créer un nouveau ASP.NET Web MVC
    Application
  2. Créer un ASP.NET App_Code
    Dossier
  3. À l'intérieur de la nouvelle
    dossier, créez une classe avec un
    Méthode D'Extension. Par exemple:

    static public class BugMVCExtension
    {
        public static int ToInt(this string str)
        {
            return Convert.ToInt32(str);
        }
    }
  4. Choisir une Vue et d'essayer d'utiliser cette nouvelle Méthode d'Extension

Vous obtiendrez cette Exception:

CS0121: The call is ambiguous between the following methods or properties:
'*MvcApplication1.App_code.BugMVCExtentions.ToInt(string)*' and
'*MvcApplication1.App_code.BugMVCExtentions.ToInt(string)*'

Personne ici n'a plus d'informations à ce sujet?
Est-ce mal pour créer un App_code dans un ASP.NET MVC(?) Les Applications Web?