Incomplete Intellisense in object intialization
I searched and saw a number of reports of Intellisense having issues when used in object initialization. Mostly, those reports led to fixes. But I haven't seen an issue similar to what I'm seeing. Specifically, I'm not getting any Intellisense in an object initialization block other than the properties which can be set within that block.
In this image, it shows what I'm referring to. i'm trying to call a method to set the value within the object initialization block. Near the bottom you can see there's at least one method which match "get" (and there are plenty other methods in the code which start "Get"). I can't even use statement completion. Ctrl-Space just displays a list of available properties.
Comments
Another notable type of property that is excluded are collections. It ought to display those collections and provide support for Collection Initialization. Perhaps add hints on what other
Add()
overloads that may exist for that collection type.Thanks - the issue with object initializers should be fixed in 8.5.1.
Good to know. Thank Joe.