minus-squarecopygirl@lemmy.blahaj.zonetoProgrammer Humor@lemmy.ml•I love RustlinkfedilinkEnglisharrow-up2·3 hours agoThen you should also override Equals(object), GetHashCode, and implement IEquatable<T>. Thankfully a lot of the usual boilerplate code can be avoided using a record class or struct: public record Person(string Name, uint Age); linkfedilink
Then you should also override
Equals(object)
,GetHashCode
, and implementIEquatable<T>
.Thankfully a lot of the usual boilerplate code can be avoided using a
record
class or struct: