Mike Marynowski

Results 38 comments of Mike Marynowski

This looks completed to me in new versions.

No problem! Just FYI - I was originally going to use a similar method as your mostly language agnostic `SemanticModel.GetSymbolInfo(node)` approach by using `SemanticModel.GetOperation(node)` and then switching on `IOperation.Kind`, but...

The fact that issues like this are still open 3 years later is....something. Can the WinUI team please implement some kind of sensible triaging system where fundamental usability issues are...

+1 Debugging anything in WinUI is a frustrating nightmare. I have spent 2 hours trying to figure out why I can't template a radio button without getting some generic HRESULT...

FWIW I haven't found any workarounds that let me use it so I've had to jump some hoops to avoid using both required and init properties anywhere WinUI sees.

@karmeye What I've done in these situations is usually something like: ```cs private MyClass? _viewModel = null; public MyClass ViewModel { get => ViewModelHelper.Get(_viewModel); set => ViewModelHelper.Set(ref _viewModel, value); }...

Is there any update on this issue? This is becoming a large problem for us. It affects our ability to use modern C# features (if you can even call `init`...

Any idea why this could be happening? The path `obj\Release\netstandard2.1\annotated` contains `netstandard.xml` so I have no idea what to do to fix this.

It seems to be hit and miss as to which IntelliSense still works and I can't really figure out what the pattern is. Working examples: - `Array.Length` - `string.Length` -...

The situation got even worse...not only do I not have intellisense, but I also can't F1 on members to get to docs - it just always goes to https://docs.microsoft.com/en-us/ :/