You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C# now allows the init property accessor, in addition to get and set. In warning messages linker will show getter like Type.Property.get and setter like Type.Property.set. But it doesn't recognize init, it will see it as set instead.
Ideally for init accessor it would show Type.Property.init. https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/init
The text was updated successfully, but these errors were encountered:
C# now allows the
init
property accessor, in addition toget
andset
. In warning messages linker will show getter likeType.Property.get
and setter likeType.Property.set
. But it doesn't recognizeinit
, it will see it asset
instead.Ideally for init accessor it would show
Type.Property.init
.https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/init
The text was updated successfully, but these errors were encountered: