Project DescriptionThis is a wrapper in C# for the Meetup.com REST API services.
The project is still being worked on, if you want a copy of the current code use the Source Code tab and download the current version. Once the first BETA release is ready it will be put in the Releases tab.
Sample Code Usage
MeetupApiClient api = new MeetupApiClient(apikey);
MeetupEventRequest searchCriteria = new MeetupEventRequest();
searchCriteria.GroupUrlName = "atlantawebdesign";
MeetupEvents events = api.Events(searchCriteria);