Fred Silberberg
Fred Silberberg
Currently, the various wrapping refactorings use a most-recently-used sorting, that resets on restart. This is awful user experience, and means that I have to reread the entire list every time...
Closes https://github.com/tailscale/tailscale/issues/8143. I map friendly labels from intent extras to tailscale node IDs, with empty string or not specifying the exitNode intent extra as the "no exit node" action. When...
* [x] Proposed * [ ] Prototype: Not Started * [ ] Implementation: Not Started * [x] Specification: https://github.com/dotnet/csharplang/blob/main/proposals/overload-resolution-priority.md ## Summary [summary]: #summary We introduce a new attribute, `System.Runtime.CompilerServices.OverloadResolutionPriority`, that...
# First-Class Span Types * [x] Proposed * [ ] Prototype: Not Started * [ ] Implementation: [test plan](https://github.com/dotnet/roslyn/issues/73445) * [ ] Specification: [link](https://github.com/dotnet/csharplang/blob/main/proposals/first-class-span-types.md) ## Summary We introduce first-class support...
This is my replacement proposal for what I originally wrote up in https://github.com/dotnet/csharplang/pull/7707.
### Discussed in https://github.com/dotnet/csharplang/discussions/6925 Originally posted by **Rekkonnect** January 28, 2023 ## Summary Despite being provided a constant expression, using an `is` pattern is not considered constant. This can be...
**Describe the bug** Yeah, this is one of those. Given two lines in a C# source file: ```cs class C { public static void Main() { Console.WriteLine("Hello world") /* Cursor...
**Describe the bug** Inside a tag in a razor file, `vit` is selecting more than it should. **To Reproduce** 1. Paste this into a file: ```razor Select Me ``` 2....
There are a few issues around strings in the razor compiler currently: 1. Interpolated strings that have `"` characters in interpolation holes are not handled correctly. 2. Raw string literals...
### Overview I have a particularly complex scoring UI that I'm trying to model which has a number of inputs (in the 15-20 input range per side, and there are...