A .NET C# class for a webpage is needed (version 3.5) to return a dataset of followed twitter user names for a particular twitter username. The class will take the form as follows:
DataSet getFollowedUserNames(string myUserName)
{
// returns DataSet of all users I am following in Twitter
// logic
return TwitterDataSet;
}
Example, User is Called X and follows 3 users called a,b,c. The DataSet would have the data a,b,c for user X. This is NOT the followers for X but the users X is following.
Final Code needs to be a .NET Web project in C# and 3.5.
I already have the solution, it uses twitter Api and XML parsing, storing parsed data in a table in a data set. You'll get it as soon as you want. Be quick. It took about 4 hours including research.