Can i contain duplicate values in Hashset object?

hashset object in C# A HashSet object contains the non duplicate values or You can say the HashSet object is the collection of the objects that contains no duplicate elements, and whose elements are in no particular order. I can not add the item that is already exist in the HashSet object. Continue reading “Can i contain duplicate values in Hashset object?”

How to create and extract a zip archive by using the ZipFile class in C#

The following code snippet shows how to create a zip file of the folder by using ZipFile Class in c#. In .Net framework 4.5, C# includes a new class in System.IO.Compression.FileSystem. However before 4.5 we have been using GZipStream Class that Provides methods and properties used to compress and decompress streams. Continue reading “How to create and extract a zip archive by using the ZipFile class in C#”