Hi I’ve made an attempt at using Tweetsharp for a twitter application I’m building and had success on my desktop application. But when I wanted to port it to WP7, most methods required this as an argument:
Action<IEnumerable<TwitterStatus>,TwitterResponse>action
I’m not really sure what the method is asking for. I didn’t have to use this in my desktop app. Can someone explain what it’s asking for or maybe point me to the proper documentation so I can understand how this works? Thanks.
It’s describing a method that takes two arguments,
IEnumerable<TwitterStatus>andTwitterResponseand has a void return type. There are many ways to satisfy this from the concise:(status, response) => blahto an ordinary method:The latter for example can be passed to those methods directly: