Question Gone is autocomplete in VS 2019.

BrunoB

Well-known member
Joined
Nov 19, 2022
Messages
96
Programming Experience
Beginner
Hello good day, does anyone know how to solve it? Thank you.
318743387_5466853493412037_1743587829549196909_n.jpg
 
I'm not sure, but it maybe because you are trying to write code in a section of a class where it is not valid. Try deleting your lines 28-32. Then try typing in DateTime. inside your setEdad() method.
 
There are a lot of errors flagged in that code that don't look like they should be errors. That means that either you have done something wrong somewhere that has basically broken all your code, or else something is broken in VS. It looks like the former, because you clearly have at least two lines of code there outside any method that should be inside a method. You need to get to the root of that issue and I imagine that Intellisense will then work. Why would you be continuing to write code with 19 compilation errors flagged? Fix what you've already broken.
 
Back
Top Bottom