Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi Matt,
You should be a married man who you read this - congrats :)
Anyway, just a small suggestion...
If you change..
var config = uTwit.DeserializeValue(settings.GetPropertyValue(twitterOAuthPropertyAlias);
var tweets = uTwit.GetLatestTweets(config, numberOfTweetsToDisplay, includeReplies, includeRetweets);
To...
TwitterOAuthDataValue config = uTwit.DeserializeValue(settings.GetPropertyValue(twitterOAuthPropertyAlias));
IEnumerable<Status> tweets = uTwit.GetLatestTweets(config, numberOfTweetsToDisplay, includeReplies, includeRetweets);
Then you get strongly typed objects to work with, which seems much nicer as you get full intellisense support (and it performs better, too). Any reason why you made it dynamic?
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Make Strongly Typed for Intellisense Support
Hi Matt,
You should be a married man who you read this - congrats :)
Anyway, just a small suggestion...
If you change..
To...
Then you get strongly typed objects to work with, which seems much nicer as you get full intellisense support (and it performs better, too). Any reason why you made it dynamic?
is working on a reply...