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
All the ValueTuple types are mutable structs. Each member field is a public field. That makes them very lightweight. However, that means tuples should not be used where immutability is important.
The text was updated successfully, but these errors were encountered:
Tuples are actually mutable.
As detailed here: https://docs.microsoft.com/en-us/dotnet/articles/csharp/tuples
The text was updated successfully, but these errors were encountered: