If by chance someone out there is trying to recreate the code that I posted, this will make it faster for you:
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
using System.Xml;
using System.Data;
using System.Data.SqlClient;
using System.IO;
static void Main(string[] args)
{
LoadOpml(@"c:\_projects\feeds.opml");
LoadBlogUrls();
PopulateSubscriptions();
SaveSubscriptions();
}