'How to mark a new api added in new version in c#, like @Since or @Version in java

How c# mark a new api added in a newer version of project. Example MinBy() method in linq added in .net6.0. How to know what api added,when it added. How do i mark for new api added to another user/ developer know that. Thanks



Solution 1:[1]

There are no attributes like that in .NET/C# best you can do is reading the release announcement.

https://devblogs.microsoft.com/dotnet/announcing-net-6/

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Nisd