简体   繁体   中英

Not getting Intellisense function parameters in Visual Studio 2010

Using Visual Studio 2010 , I am typing in the name of a function as follows:

MyClass mc = MyClassOfStaticMethods.GetMyClassInstance(

The method GetMyClassInstance takes two parameters, but when I type the above I am not getting the Intellisense showing me the parameter list for the method. Why not?

Possible guesses

  • GetMyClassInstance is instance method so intellisense can't pick method itself, and hence arguments.
  • method is hidden from intellisense.
  • your expectation of the method does not match with reality (ie you expect newer/older version of the method that you actually have).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM