Hi Richard,
Can you try to create a new Visual Studio project (for example C#
Console Application), add references->.NET and add:
Google Data API Core Library
Google Data API Contacts Library
Google Data API Extensions Library
Then, the following code should compile:
using System;
using System.Collections.Generic;
using System.Text;
using Google.Contacts;
using Google.GData.Client;
namespace ContactsV2Test
{
class Program
{
static void Main(string[] args)
{
Google.GData.Contacts.GroupMembership group = new
Google.GData.Contacts.GroupMembership();
}
}
--Julian
On Apr 15, 10:45 am, Richard Trinder
<[email protected]> wrote:
> Thanks for earlier comments but I'm still trying to add contacts to the My
> Contacts System Group (using c#). I'm told I need to
> us Google.GData.Contacts.GroupMembershipInfo to set the contact group
> (sounds entirely reasonable) and I need to use V2 of the contacts API (also,
> sounds reasonable). So, I've downloaded the latest version of the dll
> (Revision 894 from /trunk/clients/cs/lib) but still no success
> - Google.GData.Contacts.GroupMembershipInfo simply is not an accessible
> class which is unreasonable!). Any help putting me out of misery would be
> much appreciated.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Contacts API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-contacts-api?hl=en
-~----------~----~----~----~------~----~------~--~---