Alice Jankowska
Alice Jankowska
@Snazzie @andersstorhaug I also encountered similar issue during build after installing VS2022 (on .NET Core 3.1 project, in fact). What helped for me was opening the installer for VS2022 and...
+1 for more Expression Trees support, especially the null-propagating accessors or statement-bodied lambdas (as far as I know the latter are already possible, except it requires using troublesome Expression Trees...
@alexdima Thanks for the info, especially this part. > We plan to solve context sensitive coloring via special purpose semantic coloring API in VS Code. Is there some sort of...
Nevermind, I've found the related issue, which leads to more info on that matter and it looks promising, both the API itself and how it works in the recent feature...
@Anatoly03 I suggest checking out [Semantic Highlighting Guide](https://code.visualstudio.com/api/language-extensions/semantic-highlight-guide) along with [Semantic Token Sample](https://github.com/microsoft/vscode-extension-samples/tree/main/semantic-tokens-sample). Based on these, I could successfully write a silly tokeniser (in TypeScript) that coloured "good" words green...
+1 Also, would be good to have an option to filter Object Variables by name (a search bar or something).
Personally, I'm not convinced about this approach specifically. I feel like my eyes would dart around *a lot* trying to piece together what goes where. If I had to pick...
Personally, I never used it, so it wouldn't really affect my workflow that much. Might also have something to do with the fact that Room Inheritance had a reputation for...
@tinkerer-red Putting aside pyramid of doom is specifically what we want to avoid... ...why use a struct, where you could just use an array instead? >.