Define: What is a HashSet?

A HashSet holds a set of objects, but in a way that it allows you to easily and quickly determine whether an object is already in the set or not. It does so by internally managing an array and storing the object using an index which is calculated from the hashcode of the object. Take a look here … Read more

Adding images to buttons from Imagelist on a toolstrip?

It is still there for ToolBars but ToolBars are being replaced by ToolStrips. One of the ToolStrip subclasses is MenueStrip. Both ToolStrip and MenueStrip, have an ImageList property. However, for reasons unknown, the ImageList property doesn’t show up in the property tab: However you can set it in code and Intellisense will help you..: Unfortunately … Read more

Categories c# Tags