Skip to content

Instantly share code, notes, and snippets.

View digioz's full-sized avatar
😁
Coding in Open Source World!

DigiOz Multimedia digioz

😁
Coding in Open Source World!
View GitHub Profile
@digioz
digioz / HtmlAgilityPackHelper.cs
Last active August 29, 2015 14:24
HtmlAgilityPackHelper is a static class which allows you to Parse Site HTML for Data
using System;
using System.Collections.Generic;
using HtmlAgilityPack;
using digioz.BO;
namespace digioz.BLL
{
public static class HtmlAgilityPackHelper
{
/// <summary>
@digioz
digioz / Utilities.cs
Last active August 29, 2015 14:24
Serialize and Deserialize Any C# Object
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace digioz.BLL
{