Защо избрах
Казалось бы только вышел .NET 5, но уже вовсю идут обсуждения следующей версии платформы. В данном случае речь о поддержке High DPI в Windows Forms в .NET 6
https://visualstudiomagazine.com/articles/2020/12/11/winforms-net6.aspx
#NET6 #NET5
https://visualstudiomagazine.com/articles/2020/12/11/winforms-net6.aspx
#NET6 #NET5
Visual Studio Magazine
Next Up for WinForms in .NET 6 Is High DPI Support -- Visual Studio Magazine
While Microsoft and community developers have improved desktop dev tooling in .NET 5 and new open source implementations, the tech hasn't translated easily from the Windows-only .NET Framework, and catch-up efforts planned for next year's .NET 6 include high…
Команда разработчиков .NET (не путать с .NET разработчиками :) ) создала сайт, на котором собраны все задачи, связанные с выпуском следующей версии платформы. Все задачи иерархически сгруппированы и список позволяет составить практически полную картину того, как проходит разработка .NET 6!
https://themesof.net/
#NET6
https://themesof.net/
#NET6
themesof.net
Themes of .NET
Tracking Themes, Epics, User stories and Issues for the next phase of .NET runtime development
В предварительной версии .NET 6 был представлен Blazor Desktop
https://visualstudiomagazine.com/articles/2021/02/17/net-6-preview-1.aspx
#Blazor #Desktop #NET6
https://visualstudiomagazine.com/articles/2021/02/17/net-6-preview-1.aspx
#Blazor #Desktop #NET6
Visual Studio Magazine
First .NET 6 Preview Introduces Blazor Desktop -- Visual Studio Magazine
Microsoft shipped the first preview of .NET 6, expected to debut in November as the culmination of a years-long effort to provide an open source, cross-platform framework for all things .NET in one unifying umbrella offering.
Еще одна интересная возможность, которая ждет нас в .NET 6. Очередь с приоритетом - это очередь, в которой каждый элемент имеет «приоритет», который можно сравнить с другими элементами очереди. Когда элемент удаляется из очереди, элемент с наивысшим приоритетом удаляется из очереди, независимо от того, когда он был помещен в очередь.
https://dotnetcoretutorials.com/2021/03/17/priorityqueue-in-net
#NET6 #PriorityQueue #queue
https://dotnetcoretutorials.com/2021/03/17/priorityqueue-in-net
#NET6 #PriorityQueue #queue
.NET Core Tutorials
PriorityQueue In .NET - .NET Core Tutorials
It’s somewhat surprising in the 20 years .NET has been out, there hasn’t been an official implementation of a Priority Queue. It hasn’t stopped people hacking together their own Priority Queues, and indeed, even Microsoft has had several implementations of…