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...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
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...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.