Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetHashCode_Equals", "GetHashCode_Equals\GetHashCode_Equals.csproj", "{7E4D1552-E83A-4951-97B2-EBA181FD033C}" ...
Overriding the Object.Equals and Object.GetHashCode methods to provide value equality needs a lot boilerplate code. This article shows an approach that creates this code automatically. It uses ...
The Items collection in a Windows Forms ComboBox control is eminently flexible, letting you store any object you desire for later selection and display. But I often find myself storing just the ...
I've got two lists of file meta data (fsFileList and zfFileList) that I need to find the files that are in one list, not the other. Seems simple enough? Well, the issue comes in the fact that one list ...