Soapi.CS : A fully relational fluent .NET Stack Exchange API client library
- by Sky Sanders
Soapi.CS for .Net / Silverlight / Windows Phone 7 / Mono
as easy as breathing...:
var context = new ApiContext(apiKey).Initialize(false);
Question thisPost = context.Official
.StackApps
.Questions.ById(386)
.WithComments(true)
.First();
Console.WriteLine(thisPost.Title);
thisPost
.Owner
.Questions
.PageSize(5)
…