I'm uber behind on a project but will show off some stuff I love. I really, really love Regular Expressions too. New feature in .net 3.5 Poll poll = new Poll {
PollName = breakdown[1],
UserId = tweet.User.Id,
TweetId = tweet.Id,
UserName = tweet.User.Name};
And processing the votes
public void ProcessParameterList(string parameterList)
{
PollParameterList = parameterList;
// currently supported
// 1-10 \d-\d
// a,b,c,d comma delimited.
// check for 10-20
if(Regex.IsMatch(PollParameterList,...