-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed as not planned
Labels
Pri3Indicates issues/PRs that are low priorityIndicates issues/PRs that are low priorityarea-System.Linq
Description
Type of issue
Typo
Description
I guess the string comparison should be done differently. Instead:
return this.Name == other.Name && this.Code == other.Code;
I would write:
return this.Name.equals(other.Name) && this.Code == other.Code;
Page URL
https://learn.microsoft.com/en-us/dotnet/api/system.linq.enumerable.union?view=net-8.0
Content source URL
https://github.com/dotnet/dotnet-api-docs/blob/main/xml/System.Linq/Enumerable.xml
Document Version Independent Id
17beb25a-a13f-e33b-c350-9378ffdc8edb
Article author
Metadata
Metadata
Assignees
Labels
Pri3Indicates issues/PRs that are low priorityIndicates issues/PRs that are low priorityarea-System.Linq